tinymce - 无法从编辑器中删除细黑轮廓
tinymce - cannot remove thin black outline from the editor
无法从编辑器中删除细黑框。简单 - 不起作用。大纲还在。
tinymce.init({
selector: '#editor',
editor_css: "tiny.css"
});
form,
textarea,
#editor {
outline: none;
border: none;
}
尝试添加如下代码:
.tox:not([dir=rtl]) {
direction: ltr;
text-align: left;
outline: 0 !important;
border: none;
}
Live codepen 可以在这里查看 https://codepen.io/shivani30594/pen/JQxVzv?&editable=true
无法从编辑器中删除细黑框。简单 - 不起作用。大纲还在。
tinymce.init({
selector: '#editor',
editor_css: "tiny.css"
});
form,
textarea,
#editor {
outline: none;
border: none;
}
尝试添加如下代码:
.tox:not([dir=rtl]) {
direction: ltr;
text-align: left;
outline: 0 !important;
border: none;
}
Live codepen 可以在这里查看 https://codepen.io/shivani30594/pen/JQxVzv?&editable=true