网页自适应宽度
min-width:设置最小宽度(在IE不支持)。
expression_r():IE支持,可在样式中嵌入脚本。
<title>宽度自适应测试</title>
<style
type="text/css">
body{margin:0px;padding:0px;}
.content{width:100%;
height:800px; min-width:980px;
width:expression_r((documentElement.clientWidth <
980) ? "980px" : "100%" );}
.left{width:24%; height:500px;
margin-left:1%; background:#0066CC; float:left;}
.center{width:50%;
height:500px; float:left; background:#993300;}
.right{width:24%;
height:500px; float:left;
background:#CC9900;}
</style>
</head>
<body>
<center>
<div class="content">
<div
class="left"></div>
<div
class="center"></div>
<div
class="right"></div>
</div>
</center>
</body>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。