標準リストを使用して、最後の2つのリスト項目を選択しようとしています。私はさまざまな順列を持っAn+B
ていますが、最後の2は何も選択していないようです。
li:nth-child(n+2) {} /* selects from the second onwards */
li:nth-child(n-2) {} /* selects everything */
li:nth-child(-n+2) {} /* selects first two only */
li:nth-child(-n-2) {} /* selects nothing */
のような新しいCSS3セレクターを知ってい:nth-last-child()
ますが、可能であれば、さらにいくつかのブラウザーで動作するものを好みます(特にIEについては気にしません)。
nth-child
トリックがcss-tricks
:nth-last-child()
は:nth-child()
quirksmode.orgによるものとほぼ同じです。また、:nth-child()
そして:nth-last-child()
両方CSS3で導入されていない、どちらもその意味で古いか新しいかました。