7

例如我有这个:

<div>
  <a href="#">sample 1</a>
  <a href="#">sample 2</a>
  <a href="#">sample 3</a>
</div>

我想用 CSS 定位第一个链接。

4

3 回答 3

18

您可以使用第一个子选择器:

div > a:first-child { /* your css */ }
于 2012-11-08T08:47:11.200 回答
10

试试这个代码:

div > a:first-child{
   //your css code
}
于 2012-11-08T08:47:41.920 回答
2
div a:nth-of-type(n)
{
   /* css */
} 

其中 n 是您想要的行数..在您的情况下

div a:nth-of-type(1)
{
   /* css */
} 
于 2012-11-08T08:50:19.637 回答