first-child
#CSS
#疑似クラス
#last-child
:first-child - CSS: カスケーディングスタイルシート | MDN
:last-child - CSS: カスケーディングスタイルシート | MDN
:nth-child() - CSS: カスケーディングスタイルシート | MDN
type
:first-of-type - CSS: カスケーディングスタイルシート | MDN
CSS|『:not』とlast-child、first-childを併用するとコーディングが捗る | amelog
CSS:last-childより「last-child以外」の方がブラウザにやさしい | ハックノート
最後の要素以外
code:css
li:not(:last-child) {
margin-bottom: 10px;
}