Decrease the line spacing in TinyMCE textarea

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

    This is the best solution I've encountered so far... so you may use it:

    tinyMCE.init({
        style_formats : [
                {title : 'Line height 20px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '20px'}},
                {title : 'Line height 30px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '30px'}}
        ]
    });
    

    Anyway... that worked for me

提交回复
热议问题