HTML设置
CSS:
#fixed-wrapper{
min-width: 1264px;
}
#header{
width: 100%;
height: 75px;
text-align: center;
}
#header h1
{
line-height: 75px;
}
#centerCol {
margin-left: 310px;
margin-right: 360px;
height: 100%;
min-width: 604px;
}
#rightCol {
width: 285px;
height: auto;
position: absolute;
top: 75px;
right: 0;
margin-right: 75px;
}
#leftCol {
width: 235px;
height: auto;
position: absolute;
top: 75px;
left: 0;
margin-left: 75px;
}
问题是中心列需要具有最小宽度,但右列不应移动到中心列.
最佳答案
尝试将中心列的宽度设置为auto而不是定义其最小宽度,
#centerCol {
margin-left: 310px;
margin-right: 360px;
height: 100%;
width: auto;
}
原文链接:https://www.f2er.com/css/427067.html