0
0

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 3 years have passed since last update.

HTML/CSSで縦線を入れる方法

Last updated at Posted at 2021-03-02

HTML

HTML
<div class="line-left">
   <p>HELLO</p>
</div>

縦線をつけたい要素を親要素で囲む必要があります。今回はdivで囲んでみました。

CSS

CSS
.line-left {
    border-left: 3px solid red;
}

スクリーンショット 2021-03-02 215651.png

border-left: 太さ 種類 色;
このように、border-leftプロパティを使うことでHELLOの左側に縦線が付きます。

HELLOと線の距離を離したいなら、

CSS
.line-left {
    border-left: 3px solid red;
    padding-left: 10px;
}

スクリーンショット 2021-03-02 220038.png

このように、padding-leftプロパティを入れることで間隔をあけることができます。
ぜひやってみてください!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?