SCEditor - 制作默认字体 Arial

SCEditor - make the default font Arial

如何在SCEditor为空时强制以Arial作为默认字体开始?默认似乎是 Serif 字体 - 也许是 Times。

所见即所得内容的默认样式是浏览器的默认样式。

可以通过在构造函数中设置style option来改变。建议使用(或基于您的样式)content/default.min.css 样式,因为它包含一些其他重要的 CSS。 类似于:

sceditor.create(textarea, {
    // other options here
    // ...

    // Set the style for the content of the editor
    style: 'https://cdn.jsdelivr.net/npm/sceditor@3/minified/themes/content/default.min.css'
});

或通过css() method设置,例如:

instance.css('body { font-family: Arial, sans-serif; }');