CSS设置文字不能选中
发表评论
/*设置文字不能被选中 以下为css样式*/ -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;
/*设置文字不能被选中 以下为css样式*/ -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;
css中鼠标放上去变成手型怎么设置:其实就是一个属性的问题, css的cursor属性 cursor:pointer; default:标准箭头 //这是默认的样式 pointer:手形光标 wait :等待光标 text:I形光标 vertical-text :水平I形光标 no-drop:不可拖动光标 not-allowed:无效光标 help:帮助光标 all-scroll:三角方向标 move :移动标 crosshair:十字标 有的地 […]