Min-width in MSIE 6

前端 未结 11 1431
一生所求
一生所求 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:14

    foo { min-width: 100px }      // for everyone
    * html foo { width: 100px }   // just for IE
    

    (or serve a separate stylesheet to IE using conditional comments)

提交回复
热议问题