Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created December 20, 2012 06:40
Show Gist options
  • Select an option

  • Save libo1106/4343341 to your computer and use it in GitHub Desktop.

Select an option

Save libo1106/4343341 to your computer and use it in GitHub Desktop.
CodeReview
/*
* 对于: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;
}
@libo1106
Copy link
Author

@TooooBug @aui

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment