Decrease the line spacing in TinyMCE textarea

前端 未结 7 2052
时光取名叫无心
时光取名叫无心 2021-02-05 13:03

I am using TinyMCE to provide a rich text editing text editor. But the line spacing between the lines is too much. I have added a screenshot that shows the line spacing I get on

7条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-05 13:31

    From tinyMCE 4.x you can specify this option

    forced_root_block_attrs: { "style": "margin: 5px 0;" }

    this will append style: margin: 5px 0; for every p tag.

    P.S: it will not work for copy/paste content.

    Refer: http://archive.tinymce.com/wiki.php/Configuration:forced_root_block_attrs

提交回复
热议问题