当我点击space css php时,为什么它会轻松突出整个div?

时间:2015-03-26 20:53:11

标签: php jquery html css

你有没有任何css代码来阻止chrome上这个突出显示的东西。通常,我们快速双击一个网站的空间,它会突出显示整个div,但我的网站很容易被突出显示,所以我想知道我是否需要添加一些css代码,类似于文本修饰:无,帮助,欣赏。

1 个答案:

答案 0 :(得分:3)

使用user-select: CSS属性:

div {
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */

    /* No support for these yet, use at own risk */
    -o-user-select: none;
    user-select: none; 
}