调整tiny mce插件中段落的字体大小

发布于 2024-12-28 03:53:37 字数 194 浏览 1 评论 0原文

我使用 TINY_MCE 插件来拥有高级编辑器。问题是这个插件中使用的默认字体对我来说太小。可以改变吗?我的意思是段落使用的默认字体。如下所示,该字体比我用于其他字段的字体要小。

在此处输入图像描述

谢谢。

I used TINY_MCE plugin to have an advanced editor. The problem is that the default font used in this plugin is too small for me. Is it possible to change it? I mean the default font used for paragraph. As you can see below, the font is smaller that the font I used for other fields.

enter image description here

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Smile简单爱 2025-01-04 03:53:37

这并不难。最简单的是使用tinymce init paramter content_css

//css file, which will overwrite the default css settings for the editors itframe
content_css: 'my_css_file.css',

在此 ccs 文件中您需要设置

p {
    font-size: 30px; // or whtever you like
}

This is not that difficult. The easiest was will be to use the tinymce init paramter content_css

//css file, which will overwrite the default css settings for the editors itframe
content_css: 'my_css_file.css',

in this ccs file you need to set

p {
    font-size: 30px; // or whtever you like
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文