不能設置tinymce textarea的高度。根據documentation,它應該與原始替換的textarea的高度相同,在我的情況下爲500px。如何設置tinymce textarea的高度
tinymce.init({
selector: "#texedit",
body_class: 'tiny01',
content_css: "content.css",
});
content.css
.tiny01{
background:lightgreen;
overflow-y:scroll;
height:500px; // deosn't work
}
#texedit{
height:500px; // deosn't work
}
的main.css
#texedit{
height:500px; // deosn't work
}
texedit
不是500像素,但有關100px的高度。
設置高度在'init'選項。 'tinymce.init({height:500})' – helllomatt