1.'9':
eg:.test { color/***/: blue9 }
.header {width:300px;} /* 所有瀏覽器*/
.header {width/***/:330px9;} /* 所有瀏覽器IE瀏覽器*/
.header {*width:310px;} /* IE7和IE6能辨識,IE8和FF不能辨識*/
.header {_width:290px;} /* IE6能識別,IE7、IE8和FF不能識別*/
2.利用條件註解語句: 此內容只有IE可見
lt 表示less than 目前條件版本以下的版本,不包含目前版本。
gte 表示greeter than or equal 目前版本以上版本,並包含目前版本。
lte 表示less than or equal 目前版本以下版本,並包含目前版本。
3.其它hack 技術:
.color1{ color:#F00; color/***/:#00F /***/}/*IE6,IE7,IE8,FF,OP,SA辨識*/
.color2{ color:#F00; color /***/:#00F /*9**/}/*IE7,IE8,FF,OP,SA識別*/
.color3{ color:#F00; color/***/:#00F 9}/*IE6,IE7,IE8辨識*/
.color4{ color:#F00; color /***/:#00F9}/*IE7,IE8辨識*//*「color」和「/***/」之間有個空格*/
#test{color:red; /* 所有瀏覽器都支援*/ color:red !important;/* Firefox、IE7支援*/_color:red; /* IE6支援*/*color:red; /* IE6、IE7支援*/*+color:red; /* IE7支援*/color:red9; /* IE6、IE7、IE8支援*/color:red ; /* IE8支援*/}body:nth-of- type(1) p{color:red;} /* Chrome、Safari支援*/