close
新增for iphone&ipad 瀏覽器Safari 喔!
區別IE6、IE7、IE8、Firefox
【辨識符號】:「\9」、「*」、「_」
【範例練習】:
#tip {
background:blue; /*Firefox 背景變藍色*/
background:red \9; /*IE8 背景變紅色*/
*background:black; /*IE7 背景變黑色*/
_background:orange; /*IE6 背景變橘色*/
}
區別IE6、IE7、Firefox
【辨識符號】:「*」、「_」
【範例練習】:
#tip {
background:blue; /*Firefox背景變藍色*/
*background:black; /*IE7 背景變黑色*/
_background:orange; /*IE6 背景變橘色*/
}
區別Chrome、Safari
@media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} }
文章來源:
[CSS Hack]解決IE6、IE7、IE8、Firefox的瀏覽器相容性問題!
【更新】2012/11/29。for iphone&ipad 瀏覽器Safari
@media screen and (max-device-width: 480px) {
.BOX{}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.BOX{}
}
全站熱搜