css怎么设置连续点击按钮不选中里面的字体

html-css018

css怎么设置连续点击按钮不选中里面的字体,第1张

body{

-moz-user-select:none/*火狐*/

-webkit-user-select:none/*webkit浏览器*/

-ms-user-select:none/*IE10*/

user-select:none

}

body{

    -webkit-user-select:none

    -moz-user-select:none

    -ms-user-select:none

    user-select:none

}

不是不能选中是选中的颜色改了透明而已

代码如下

::-moz-selection { /* Code for Firefox */

    background: transparent

}

::selection {

    background: transparent

}

望采纳