たとえば、私はこれを持っています:
<div>
<a href="#">sample 1</a>
<a href="#">sample 2</a>
<a href="#">sample 3</a>
</div>
CSSで最初のリンクをターゲットにしたい。
たとえば、私はこれを持っています:
<div>
<a href="#">sample 1</a>
<a href="#">sample 2</a>
<a href="#">sample 3</a>
</div>
CSSで最初のリンクをターゲットにしたい。
ファーストチャイルドセレクターを使用できます。
div > a:first-child { /* your css */ }
このコードを試してください:
div > a:first-child{
//your css code
}
div a:nth-of-type(n)
{
/* css */
}
ここで、nは必要な行数です。あなたの場合
div a:nth-of-type(1)
{
/* css */
}