有时候;网页在屏幕或者浏览器缩小的情况下,布局会跑乱,为了解决这问题我们可以设置body的最新宽度,
代码如下
body{
background:#FCCFCFC;
min-width: 1220px;
_width: expression(document.documentElement.clientHeight > 1220 ? "1220px" : "");
font-size:13px;
height:101%;/*始终出现Y轴的滚动条*/
}
代码如下
body{
background:#FCCFCFC;
min-width: 1220px;
_width: expression(document.documentElement.clientHeight > 1220 ? "1220px" : "");
font-size:13px;
height:101%;/*始终出现Y轴的滚动条*/
}