CSS 顯示的效果也不同
所以這邊記錄一下各瀏覽器支援的 CSS Hack 寫法
p=property / v=value | |||||
p:v; | p:v \9; | *p:v; | _p:v; | p:v !important; | |
---|---|---|---|---|---|
Firefox | ● | ● | |||
IE6 | ● | ● | ● | ● | |
IE7 | ● | ● | ● | ● | |
IE8 | ● | ● |
範例 :
<style type="text/css">
#container {
width:200px; /* for Firefox */
width:205px \9; /* for IE8 */
*width:210px; /* for IE7 */
_width:215px; /* for IE6 */
}
</style>
#container {
width:200px; /* for Firefox */
width:205px \9; /* for IE8 */
*width:210px; /* for IE7 */
_width:215px; /* for IE6 */
}
</style>
沒有留言:
張貼留言