2014-09-25 65 views
0

我有兩個不同的「」(什麼是正確的術語???)ul s,我想選擇a標籤,這些標籤只在第一個標籤內。什麼是我想要做的CSS選擇器?

<div> 
    <ul> 
     <li> 
      <a>Here's what I'm trying to apply a certain style to</a> 
      <ul> 
       <li> 
        <a>Here's what I'm not trying to apply that certain style to</a> 
       </li> 

      </ul> 

     </li> 

    </ul> 
</div> 

所以我知道我不能只是做div ul li a,因爲這將包括內部a標籤。

+0

看一看:選擇列表中的第嵌套子但不是subchilds](http://stackoverflow.com/questions/25887234/select-first-nested-child-in-list-but-not-subchilds/25887335#25887335) – 2014-09-25 20:37:38

回答

3

您需要:

  • 使用兒童組合子
  • 參考div元素

這樣的:

div > ul > li > a 
相關問題