背景色付きボックス見出し

目次

✦ 注目のトピック ✦

HTML
<h2 class="heading-center-line">✦ 注目のトピック ✦</h2>
CSS
.heading-center-line {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 40px 0;
}

.heading-center-line::before,
.heading-center-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #ccc;
}

.heading-center-line::before {
  left: 0;
}

.heading-center-line::after {
  right: 0;
}

🌟 有料会員限定素材を配布中!

ここでしか手に入らない特別デザイン素材を今すぐチェック!

有料会員ページを見る
目次