Decrease the line spacing in TinyMCE textarea

前端 未结 7 2146
时光取名叫无心
时光取名叫无心 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

    There is a css class that is applied to the TinyMCE html content. It looks like you have

    tags causing the spacing. Honestly, it looks pretty good to me. But you can override in the css class:

    .tinymce-content p {
        padding: 0;
        margin: 2px 0;
    }
    

    See the tinymce docs for more info.

提交回复
热议问题