Reputation: 51361
#ie .page /*all page class under #ie*/
#ie > .page /* .page only in #ie's direct child*/
#ie.page /* What does this mean?*/
Upvotes: 0
Views: 48
Reputation: 886
The third one affects elements with an ie
id which also have page
as a class.
Upvotes: 4