One CSS Syntax help
开发者_如何学C#ie .page /*all page class under #ie*/
#ie > .page /* .page only in #ie's direct child*/
#ie.page /* What does this mean?*/
The third one affects elements with an ie
id which also have page
as a class.
精彩评论