上次隨意尋找,沒有看清楚,就荒廢了一陣子 XD
這次確實地找,看到相關的文章:
- TinyMCE - Forum / TinyMCE / Tips, Tricks & HowTo's / default font size
- TinyMCE - content_css
- Drupal: How to increase the default font size in TinyMCE | Gerard McGarry
總之,解法就是可以在 tinyMCE.init 指定一個 content_css 資訊來設定顯示字型啦,例如:
@ /path/custom_content.css
body.mceContentBody {
font-size:20px;
}
@ test.html
tinyMCE.init({
....
content_css : "/path/custom_content.css?"+new Date().getTime(),
....
});
而 custom_contents.css 後面加上一個時間戳記,只是為了避免瀏覽器 cache 而已。
沒有留言:
張貼留言