LoginSignup
1
0

More than 3 years have passed since last update.

【HTML】<textarea>の内容を表示する際に<pre>でフォントを変えず、折返しさせる方法

Last updated at Posted at 2021-01-20

タグを使用すると改行はちゃんと改行されるが、フォントが変わってしまう。

デモ

See the Pen <textarea>と<pre> (@rjwxfqli) on CodePen.

white-spaceプロパティなるものを利用すれば改行も反映される

改行ありのテキストを表示したいなら、表示するタグのCSSに以下を追加する。

white-space: pre-wrap;

これで、preのように整形してくれるし、preだとフォントが変わっちゃうのも変わらなくしてくれる。

問い合わせフォームとかの長い文章を入力して、確認画面などに表示する際に使えるのかなと思います。

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