Created
December 20, 2012 06:40
-
-
Save libo1106/4343341 to your computer and use it in GitHub Desktop.
CodeReview
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
| /* | |
| * 对于:first-of-type伪类的使用 | |
| * IE8及以下浏览器不兼容该伪类 | |
| * 为了兼容IE6\7\8而去添加了一个.first这段代码,那:first-of-type还有意义吗? | |
| */ | |
| table tr:first-of-type th { /* Others */ | |
| background-image: url(/img/data_sheet_tr_bg.png); | |
| background-repeat: repeat-x; | |
| height: 31px; | |
| } | |
| table tr.first th { /* IE6/IE7/IE8 */ | |
| background-image: url(/img/data_sheet_tr_bg.png); | |
| background-repeat: repeat-x; | |
| height: 31px; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@TooooBug @aui