答案 0 :(得分:2)
您可以使用Javascript获取视口宽度并按照此处所述计算位置:http://www.svendtofte.com/code/max_width_in_ie/
<style>
p {
border:1px solid red;
width:expression(
document.body.clientWidth > (500/12) *
parseInt(document.body.currentStyle.fontSize)?
"30em":
"auto" );
}
</style>
答案 1 :(得分:0)
CSS:
<!--[if IE 6]>
<style type="text/css">
img.img {
width:expression(document.body.clientWidth > 640 ? "640px": "auto")
}
</style>
<![endif]-->