我使用下面的代码片段来显示 tinymce 上的不同功能,如前景色、背景色、牛市等
$(function() {
appendTinyMCE();
function appendTinyMCE(){
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "preview",
// Theme options
theme_advanced_buttons1 : "forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,|,formatselect,fontselect,fontsizeselect,sub,sup,|,bold,italic,underline,strikethrough",
theme_advanced_buttons2 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
});}
});
但是当我在浏览器上看到 tinymce 时,大约 25% 的 tinymce 编辑器标题宽度仅由两个按钮占用,即前景色、背景色,看起来很奇怪,尽管我提到了 theme_advanced_toolbar_align :“左”。这是图像。
我们可以调整 tinymce 按钮,使每个按钮的宽度一致吗?