1
3

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 label内で任意に改行する

Posted at

Label 内で任意に改行したい!

Label 内で br タグを入れても改行されないので、改行する方法を調べたので忘備録として残しておきます。

css の white-space を使う

https://developer.mozilla.org/ja/docs/Web/CSS/white-space
image.png

pre-line と 改行コードで任意改行

label.br-label {
    white-space: pre-line;
}
<label class="br-label">改行を
含むラベル</label>

CSS は便利ですね!

ブラウザーの互換性

image.png

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?