LoginSignup
1
1

More than 3 years have passed since last update.

【CSS】改行コードを含む文字列をCSSだけで改行させる。(ばいばいBR)

Last updated at Posted at 2019-08-16

メモとして残します。

■やり方

white-space属性で、値がpre-wrap

ELEMENT_selector{
    white-space: pre-wrap;
}

今まで、バックエンドで渡すとき、もしくはフロントでデータ受け取り後に改行コードを<br />に置換してたので、面倒でしたが、これで、無駄なコードを書かなくて済みます。

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