Setting default font size and background color in TinyMCE
如何在 TinyMCE 中设置默认字体大小和背景颜色?
谢谢,
伊甸园
您是否尝试过 content_css 选项?这在 TinyMCE 常见问题解答中提到:http://wiki.moxiecode.com/index.php/TinyMCE:FAQ#Change_default_text_color.2Feditor_background_in_TinyMCE.3F
您可以使用它为您的编辑器指定一个 CSS 文件,允许您设置字体和背景颜色等内容。
希望这会有所帮助;谢谢
山姆
(我意识到这是一个非常古老的帖子,只是为了其他人阅读而添加它)
您也可以使用 Javascript 更改 css。
将此添加到您的初始化函数中:
1 | oninit :"postInitWork", |
和
1 2 3 4 5 6 7 8 | function postInitWork() { tinyMCE.getInstanceById('textedit').getWin().document.body.style.backgroundColor='#FFFF66'; var dom = tinymce.activeEditor.dom; var pElements = dom.select('p'); // Default scope is the editor document. dom.setStyle(pElements, 'color', 'red'); } |
背景
So basicly you would copy the
themes/advanced/editor_ui.css to your
own location, edit the colors and it
should be ok.
1 2 3 4 | .mceEditorArea { font-family:"MS Sans Serif"; background: #FFFFFF; } |
字体大小
1 2 3 4 | tinyMCE.init({ ... font_size_style_values :"xx-small,x-small,small,medium,large,x-large,xx-large" }); |
无论如何,谷歌是你的朋友