Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そこで、CSS3で六角形のパターンを作成しています。このようにしたいと思います。
http://www.upperfirst.com
六角形を浮かせています:特定の幅のボディに残しました。1行おきに最初の要素を選択できれば、上記のリンクで効果的に結果を得ることができます。そのためのn番目の子の式は何でしょうか?
それは5番目の要素であり、その後は7番目の要素ごとになりますか?
式は:nth-child(7n+5)です。は7n「7番目の要素ごと」を+5表し、は「5番目の要素から開始する」を表します。
:nth-child(7n+5)
7n
+5
:nth-child()セレクター仕様の詳細。
:nth-child()