我使用下面的代码片段来显示不同的功能,如forecolor,backcolor,bulllist等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
});}
});
但是当我在浏览器上看到这个问题时,大约25%的tinymce编辑器标题宽度只有两个按钮,即forecolor,backcolor 看起来很奇怪,虽然我已经提到过theme_advanced_toolbar_align:“left”。 这是图像。
我们可以调整tinymce按钮吗? 每个按钮的宽度是否均匀?