概述
前端开发通用样式中的button
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>通用button设置</title>
<style type="text/css">
/*btn是大按钮,btn-min是小按钮*/
.btn{
display: inline-block;
height: 45px;
line-height: 45px;
background: #c60023;
font-size: 17px;
color: #fff;
cursor: pointer;
text-decoration: none;
outline: none;
font-weight: bold;
padding: 0 20px;
vertical-align: middle;
border: none;
}
.btn-min{
font-size: 10px;
height: 30px;
line-height: 30px;
}
</style>
</head>
<body>
<div class = "btn">按钮1</div>
<div class="btn btn-min">按钮2</div>
</body>
</html>
效果如图:
最后
以上就是舒服向日葵为你收集整理的css通用button的设置的全部内容,希望文章能够帮你解决css通用button的设置所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复