What does ">" mean here?Originally Posted by Paul O'B
| SitePoint Sponsor |





What does ">" mean here?Originally Posted by Paul O'B




Paul is using a child selector.
That says that all body elements, which are children (contained in) html elements have an id named outer with an auto height.
Checkout the W3's child selector sectionCode:/* All paragraphs in a body element are red */ body > p { color: #F00; }
Bookmarks