使用 Froala 文本编辑器,如何以编程方式设置文本的初始大小?它被阻止为 28px,不能通过简单的选项进行修改。
$('#editorAsunto').editable({ // idioma también cargando el es.js
inlineMode: false, language: 'es', maxCharacters: 1000,
placeholder: 'Escribe el asunto del mensaje. Hasta 1000 caracteres...',
heightMin: 60, heightMax: 100, height: 60,
buttons: ["bold", "italic", "underline", "strikeThrough","sep"
,"fontFamily", "fontSize", "formatBlock", "color","sep"
,"insertOrderedList", "insertUnorderedList", "outdent", "indent", "sep"
,"createLink", "insertHorizontalRule", "table","html"]
});
选项fontSizeDefaultSelection: '14'不起作用。
$('#editorAsunto').froalaEditor({ fontSizeDefaultSelection: '14' });
我必须以任何方式更改 css froala 样式吗?谢谢。