基本的な考え方は次のとおりです
ul または li タグの下に 3 つの li リストを作成します
li タグの位置を相対的にします。そして左にパディングを加えます
li { height: 40px; padding-left: 20px; display: flex; align-items: center; position: relative; }
li::before css プロパティを使用して、周囲に左の境界線を作成します。
li::before { content: ''; position: absolute; left: -16px; border-left: 2px solid black; height: 100%; width: 1px; }
次に、li::after css プロパティを使用して、その周りに 3 つの円を作成します
li::after { content: ''; display: inline-block; height: 10px; width: 10px; border-radius: 50%; background-color: blue; margin-left: -80px; }
最後に、最初と最後のリストから行を切り取ります
li:first-child:before { top: 20px; } li:last-child:before { top: -20px; }
結果:
完全なコード:
html:
CSS:
li { height: 40px; padding-left: 20px; display: flex; align-items: center; position: relative; } li::before { content: ''; position: absolute; left: -16px; border-left: 2px solid black; height: 100%; width: 1px; } li::after { content: ''; display: inline-block; height: 10px; width: 10px; border-radius: 50%; background-color: blue; margin-left: -80px; } li:first-child:before { top: 20px; } li:last-child:before { top: -20px; }
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3