html怎么改变按钮颜色
时间:2021-11-20
来源:互联网
今天PHP爱好者为您带来html改变按钮颜色的方法:1、给按钮元素添加“button{background-color:颜色值}”样式改变按钮的背景颜色;2、给元素按钮添加“button{color:颜色值}”样式改变按钮的字体颜色。希望对大家有所帮助。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
html改变按钮颜色的方法
1、html改变背景颜色的方法
代码如下:
button{background-color:颜色值}
设置背景颜色:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
button{background-color:#FF0000}
</style>
<body>
<button>按钮</button>
</body>
</html>
输出结果:
2、html改变按钮字体颜色的方法
代码如下:
button{color:颜色值}
设置字体颜色:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
button{color:#FF0000}
</style>
<body>
<button>按钮</button>
</body>
</html>
输出结果:
以上就是html怎么改变按钮颜色的详细内容,更多请关注php爱好者其它相关文章!
-
迷你世界牌楼怎么建造-中国风建筑详细教程 时间:2025-07-03
-
遗忘之海艾丝有什么技能-艾丝技能效果详解 时间:2025-07-03
-
遗忘之海艾丝有什么技能-艾丝技能效果详解 时间:2025-07-03
-
灵兽大冒险怎么合宠-灵兽合成技巧详细解析 时间:2025-07-03
-
币安小额资产怎么处理?-一键转换为BNB功能使用方法 时间:2025-07-03
-
灵兽大冒险怎么合宠-灵兽合成技巧详细解析 时间:2025-07-03
今日更新
-
jquery中隐藏元素用什么方法
阅读:18
-
nodejs事件循环几个阶段是什么
阅读:18
-
innerhtml是jquery方法么
阅读:18
-
CentOS7 MySQL怎么进行定时备份
阅读:18
-
jquery怎么判断dom元素是否存在
阅读:18
-
jquery的优点有哪些
阅读:18
-
jquery与angularjs的区别是什么
阅读:18
-
jquery中怎么判断值在不在数组中
阅读:18
-
jquery对象怎么转为js对象
阅读:18
-
jquery怎么修改display属性
阅读:18