我通过以下方式创建了代码镜像:
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;
}