我想爲ie8使用一些不同的CSS,但只保留一個CSS文件。任何人都可以告訴我最好的「黑客」是什麼?是的,我知道黑客不好,但我想保留一個CSS文件,至少現在。如何爲IE設置特殊的CSS?
例如,在非IE8瀏覽器,我想在瀏覽器中看到這一點:
div.content_header_heading {
background: -moz-linear-gradient(top, #cccccc 0%, #eeeeee 35%, #eeeeee 65%, #cccccc 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cccccc), color-stop(35%,#eeeeee), color-stop(65%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #cccccc 0%,#eeeeee 35%,#eeeeee 65%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #cccccc 0%,#eeeeee 35%,#eeeeee 65%,#cccccc 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #cccccc 0%,#eeeeee 35%,#eeeeee 65%,#cccccc 100%); /* IE10+ */
}
但是,如果瀏覽器是IE8,我想在瀏覽器中看到這一點:
div.content_header_heading {
}
可能的重複[如何寫一個IE條件註釋一次針對所有IE版本?](http://stackoverflow.com/questions/1774574/how-to-write-one-ie-conditional-comment-所有即ie版本一次) – 2011-05-18 11:25:27