LoginSignup
0
0

More than 3 years have passed since last update.

CSS 見出しに横棒

Posted at

CSSで見出しに横棒をつける


<h2 class="line">ライン</h2>
.line {
        display: flex;
        align-items: center;
      }
.line::before,
.line::after {
             content:"";
             height: 1px;
             width: 10px;
             background-color: #333;
             }

ーラインー

↑こんな感じの横棒を付けられる。
widthを消して、

flex-grow: 1;

とすると横幅いっぱいの横棒になる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0