0
見出しの横に二重の縞模様や線を作成しようとしていますが、わかりませんでした。ここで私がこれまで持っているものです。ヘッダーの横の線
これは私がこれまで持っているものです。
私の目的ではなく、単一の二重線を達成することです。代わりに、勾配の
.section-heading {
display: table;
white-space: nowrap;
}
.section-heading:before {
background: linear-gradient(to bottom, black, black) no-repeat left center/95% 1px;
content: "";
display: table-cell;
width: 50%;
}
.section-heading:after {
background: linear-gradient(to bottom, black, black) no-repeat right center/95% 1px;
content: "";
display: table-cell;
width: 50%;
}
<h2 class="section-heading" style="text-align: center;"><span style="color: #ff8916;">THE WISHLIST</span></h2>
、おかげでたくさんの作品はい。 –