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

html-css016

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

body{

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

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

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

user-select:none

}

1、首先,打开HTML编辑器并创建一个新的HTML文件,比如index.html。

2、在index.html中的<style>标签中,输入css代码:button {background-color: #00a7d0}

button:hover {background-color: #ff7701}。

3、当浏览器运行索引index.html页面中,出现蓝色背景颜色的按钮。

4、将鼠标移到按钮上,按钮的背景颜色将变为橙色。