テキストの左右に線を引きたいです。
1本の実線の作り方はわかりますが
この線を2本にしたい場合どうしたら良いでしょうか?
=テキスト=
といったような2本の線です。
HTML
1 <p class="title01">タイトル</p> 2
CSS
1.title01{ 2 display:flex; 3 align-items:center; 4} 5.title01::before, 6.title01::after{ 7 content:""; 8 height: 7px; 9 flex-grow:1; 10 background-color: tomato; 11} 12 13.title01::before{ 14 margin-right:1rem; 15 16} 17 18 19.title01::after{ 20 margin-left: 1rem; 21} 22
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/09 14:13
2021/01/09 14:18
2021/01/11 05:16