<ul class="someclass">
<li>
<a>something arbitrary here</a><!--this is what I am trying to capture-->
<ul>
<li><a>list elemnts here</a></li>
<li><a>list elemnts here</a></li>
<li><a>list elemnts here</a></li>
<li><a>list elemnts here</a></li>
</ul>
</li>
<li>
<a>something arbitrary here</a><!--this is what I am trying to capture-->
<ul>
<li><a>list elemnts here</a></li>
<li><a>list elemnts here</a></li>
<li><a>list elemnts here</a></li>
<li><a>list elemnts here</a></li>
</ul>
</li>
</ul>
我正在尝试使用 CSS 来“提取”标记的第一个列表项。我应该使用哪些 CSS 选择器?提前致谢!