1
我通過創建codemirror:codemirror所選文本的CSS不起作用(DIV背景顏色沒有出現在文本區域顯示)
editor = CodeMirror.fromTextArea(document.getElementById("code"), {
lineNumbers: true,
readOnly: false,
theme: 'ambiance',
mode: mode(lang),
lineWrapping: true,
});
然而
,當我試圖選擇文本,所選文本不突出。 我甚至說:
.CodeMirror-selected { background: red !important; }
但它仍然無法正常工作......有人可以請給我一些暗示/建議嗎? 謝謝! :)
編輯:
我發現如何使它工作,通過刪除下面的CSS ..我仍然困惑,爲什麼雖然。
div{
position:relative;
overflow:hidden;
}
你在哪裏添加了「.CodeMirror-selected {background:red!important;}」? – aljordan82
是否正在更新編輯器內容(即調用'cm.setValue()')? –
我把它放在codemirror.css中... – Frost