gpt4 book ai didi

css - 如何设置tinymce textarea的高度

转载 作者:太空宇宙 更新时间:2023-11-04 01:39:40 24 4
gpt4 key购买 nike

无法设置tinymce 文本区域的高度。根据documentation ,它应该与原来替换的文本区域的高度相同,在我的例子中是 500px。

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
}

ma​​in.css

#texedit{
height:500px; // deosn't work
}

texedit 不是 500px,而是大约 100px 的高度。

最佳答案

您需要在 init 调用中设置此值。

tinymce.init({
selector: "#texedit",
body_class: 'tiny01',
content_css: "content.css",
height: "500"
});

关于css - 如何设置tinymce textarea的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45597822/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com