Getting the TinyMCE 4 Font Sizes drop down to set the font size in px instead of pt

不问归期 提交于 2019-12-21 12:10:45

问题


Does anyone see a way to make the TinyMCE 4 Font Sizes drop down offer font sizes in px instead of pt?

Thanks


回答1:


You need to use the fontsize_formats option where you can also change the unit of the values of the font sizes dropdown:

tinymce.init({
    selector: 'textarea',
    toolbar: 'fontsizeselect',
    fontsize_formats: "8px 10px 12px 14px 18px 24px 36px"
});

Demo JSFiddle.



来源:https://stackoverflow.com/questions/28132337/getting-the-tinymce-4-font-sizes-drop-down-to-set-the-font-size-in-px-instead-of

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!