SitePoint
Reference
CSS
Selector Reference
Combinators
Child Selector
CSS Live Demo: Child Selector
(this page)
See also:
All Live Demos
CSS Live Demo: Child Selector
Type your
CSS
here:
(any properties allowed except expression, behavior and @import)
ul>li { border:1px solid red; } ul li { color:#009; font-style:italic; }
Type your
HTML
here:
(any tags allowed except script, iframe, frame, object, img and embed)
<h1>Shopping list</h1> <ul> <li>Party supplies <ul> <li>Inflatable palm trees</li> <li>Straws and swizzle sticks</li> <li>Pineapples</li> </ul> </li> <li>Booze <ul> <li>Pina coladas</li> <li>Beer</li> <li>Cider</li> </ul> </li> <li>Treasure <ol> <li>Chocolate</li> <li>Silver</li> <li>Gold</li> </ol> </li> </ul>
Show me!
Your results appear here: