ページ内リンク
:first-child {} //最初の行のみ指定 :nth-child(n) {} //n番目の行のみ指定 :nth-child(2n) {} //奇数行のみ指定 :last-child {} //最後の行のみ指定 :nth-last-child(n) {} //最後からn番目の行のみ指定
▲上に戻る