0
1

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.

[WordPress]「整形済みテキスト」のスクロール表示をやめて、折り返し表示にしたい

Posted at

内容

WordPress 「整形済みテキスト」のスクロール表示をやめて、折り返し表示にしたい

対応

CSSを使用して長い文章を折り返します。

外観 -> カスタマイズ -> 追加CSS
から以下のCSSを追加します。

.xxx-pre-wrap {
  white-space: pre-wrap;
  overflow: auto;
}

「整形済みテキスト」ブロックの高度な設定から、「追加 CSS クラス」に設定。

xxx-pre-wrap

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?