Different CSS files for Different Browsers

前端 未结 10 1022
情深已故
情深已故 2020-12-17 07:48

I want to use different CSS files for different browser types. Is there any simple HTML code which can detect different types of browsers and include CSS files accordingly?<

10条回答
  •  情书的邮戳
    2020-12-17 08:12

    Don't use CSS hacks, Javascript to switch style sheets or anything like that.

    I've never ever had to use multiple style sheets for different browsers or any invalid CSS hacks.

    Its not needed. The conditional comments are useful for maybe IE6 and below for the PNG fix stuff, but appart from that, if you know CSS and the various browser bugs you can easily code XHTML and CSS for IE 5.5 without many problems.

提交回复
热议问题