CSS で五芒星を記述する方法: 最初に HTML サンプル ファイルを作成し、次に小さな名前のクラスを使用して div を作成し、最後に「transform:rotate(70deg);」およびその他のスタイルを設定します。五芒星を実現するために。
この記事の動作環境: Windows7 システム、HTML5&&CSS3 バージョン、DELL G3 コンピューター
css を使用して 5 つの要素を実現します。尖った星
大きな五芒星
##小さな名前のクラスを通じて div を作成.small-all{ display: flex; margin:1rem 13%; } .small { border-color: #7d7d7d transparent transparent transparent; border-style: solid; border-top-width: 9.375px; border-right-width: 15px; border-left-width: 15px; height: 0; margin-top: 9.375px; margin-bottom: 6.02679px; position: relative; width: 0; margin: 2rem 0.8rem; } .small:before,.small:after { border-color: #7d7d7d transparent transparent transparent; border-style: solid; border-top-width: 9.375px; border-right-width: 15px; border-left-width: 15px; content: ''; display: block; height: 0; left: -15px; position: absolute; top: -9.375px; width: 0; } .small:before { transform: rotate(70deg); } .small:after { transform: rotate(-70deg); }
小五角星
小さい名前のクラスを使用して div を作成します.smaller { border-color: #7d7d7d transparent transparent transparent; border-style: solid; border-top-width: 5px; border-right-width: 10px; border-left-width: 10px; height: 0; margin-right: 1.2rem; margin-top: 5px; margin-bottom: 3.21429px; position: relative; width: 0; } .smaller:before,.smaller:after { border-color: #7d7d7d transparent transparent transparent; border-style: solid; border-top-width: 5px; border-right-width: 10px; border-left-width: 10px; content: ''; display: block; height: 0; left: -10px; position: absolute; top: -5px; width: 0; } .smaller:before { transform: rotate(70deg); } .smaller:after { transform: rotate(-70deg); }
css ビデオ チュートリアル》
以上がCSSで五芒星を書く方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。