何番目以降(例:5番目以降)
li:nth-child(n + 5) {}
何番目まで(例:5番目まで)
li:nth-child(-n + 5) {}
最後以外
li:not(:last-child)
奇数
li:nth-child(odd)
偶数
li:nth-child(even)
Go to list of users who liked
More than 5 years have passed since last update.
何番目以降(例:5番目以降)
li:nth-child(n + 5) {}
何番目まで(例:5番目まで)
li:nth-child(-n + 5) {}
最後以外
li:not(:last-child)
奇数
li:nth-child(odd)
偶数
li:nth-child(even)
Register as a new user and use Qiita more conveniently
Go to list of users who liked