Min-width in MSIE 6

前端 未结 11 1460
一生所求
一生所求 2020-12-16 05:35

What is the definitive way to mimic the CSS property min-width in Internet Explorer 6? Is it better not to try?

11条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-16 06:21

    This works pretty well...

    div.container {
        min-width: 760px; 
        width:expression(document.body.clientWidth < 760? "760px": "auto" ); 
    }
    

提交回复
热议问题