如何在Internet Explorer中为contenteditable设置为true的div设置光标样式?

时间:2013-11-12 08:28:13

标签: css internet-explorer-9 contenteditable

无论CSS中指定的样式如何,它似乎都是"移动"光标有两组重叠的箭头。

1 个答案:

答案 0 :(得分:0)

以下CSS应该有效 - 只要没有冲突的规则:

    [contenteditable=true]:hover{
        cursor:text;
    }

在IE7,8,9,10中进行测试