CODEPREP | HTML&CSSでつくる登録フローのメモです。
list-styleがshorthund propertiesだということ知らなかったです。(list-style: noneをよく書いていたのですが、list-style-typeの設定をしてたのですね)
リスト項目の点を消す
list-style-type: noneを指定する- list-style-type - CSS: カスケーディングスタイルシート | MDN
list-styleはshorthand properties(一括設定プロパティ)
ある要素のうち、奇数番目のものを指定する
要素:nth-child(odd)を指定する- :nth-child() - CSS: カスケーディングスタイルシート | MDN
ある要素のうち、偶数番目のものを指定する
要素:nth-child(even)を指定する
