Created
January 23, 2013 10:04
-
-
Save libo1106/4603907 to your computer and use it in GitHub Desktop.
CSS3向下兼容那些事
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.data-sheet tr:first-of-type th.selected { /* Others */ | |
background-image: url(/img/data_sheet_th_selected_bg.png); | |
background-repeat: repeat-x; | |
height: 31px; | |
} | |
.data-sheet tr.first th.selected { /* IE6/IE7/IE8 */ | |
background-image: url(/img/data_sheet_th_selected_bg.png); | |
background-repeat: repeat-x; | |
height: 31px; | |
} | |
/* | |
* 又一段这样的代码,不论浏览器是否支持:first-of-type,都将会执行第二条样式,何必呢? | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment