我的问题是我需要将自定义 css 应用于 tinyMCE,但它们只是没有被拾取。我也尝试过替换默认样式,但它仍然从其他地方加载它们。
根据他们的文档,我可以使用“content_css”来应用我的自定义样式,但这也不起作用。
有什么想法可以应用这些样式吗?
这是我的配置:
$(".type").tinymce({
plugins : 'advlist autolink link lists',
theme: "modern",
skin: 'test',
content_css:"/static/js/general/tinymce/skins/test/custom.css",
inline:true,
menubar:false,
});