0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

タイトルの横に線をつけるスタイル

Last updated at Posted at 2017-05-09

下記の画像のようにタイトル横に線を引くスタイル。

スクリーンショット 2017-05-09 17.46.52.png

style.css
h1 {
    background: none;
    position: relative;
    text-align: center;
    width: 500px;
    margin: 0 auto;
}

h1::before {
    border-top: 2px solid #000;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}

h1 span {
    background-color: white;
    display: inline-block;
    padding: 0 1em;
    position: relative;
}

index.html
<h1><span>タイトルテキスト</span></h1>

たまーに使うので、メモ。

0
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?