Say I have:
<ul class="menu">
<li>One</li>
<ul class="submenu">
<li>Apple</li>
<li>Orange</li>
</ul>
<li>Two</li>
<ul class="submenu">
<li>Pear</li>
<li>Banana</li>
</ul>
</ul>
Is there a way to select only the first children of the top level <ul>
element (in this case "One" and "Two") with just CSS?