所属分类:web前端开发
css样式把按钮变圆的方法:首先创建一个HTML示例文件;然后定义一个button按钮;最后通过css中的“border-radius”属性将按钮四角设置为圆角即可。
前端(vue)入门到精通课程:进入学习
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API调试工具:点击使用
本教程操作环境:windows7系统、HTML5&&CSS3版、Dell G3电脑。
将button变成圆形(有弧度)
border-radius可以将button变成圆形,也可以给p加有弧度边框
border-radius 规则:
一个值: 四个圆角值相同
两个值: 第一个值为左上角与右下角,第二个值为右上角与左下角
三个值: 第一个值为左上角, 第二个值为右上角和左下角,第三个值为右下角
四个值: 第一个值为左上角,第二个值为右上角,第三个值为右下角,第四个值为左下角。
样式:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.btn{
width: 100px;
height: 30px;
background: green;
border: none;
color: white;
margin: 6px 10px;
}
.btnStyle1{
border-radius: 6px;
}
.btnStyle2{
border-radius: 26px 6px;
}
.btnStyle3{
border-radius: 6px 26px 60px;
}
.btnStyle4{
border-radius: 6px 126px 236px 346px;
}
.bolder{
border: solid 1px green;
width: 500px;
height: 40px;
border-radius: 10px;
}
</style>
</head>
<body>
<p class="bolder">
<button class="btn btnStyle1">按钮1</button>
<button class="btn btnStyle2">按钮2</button>
<button class="btn btnStyle3">按钮3</button>
<button class="btn btnStyle4">按钮4</button>
</p>
</body>
</html>
登录后复制
有时候border-radius会失效
解决办法:万能的!important;
在border-radius属性里面添加 !important,让浏览器首选执行这个语句
border-radius: 6px !important;
登录后复制
CSS中的!important一般都是用于对低版本的除了iE 6 ,用来做hack的,后面缀上了!important的css语句,让浏览器首选执行这个语句,因为css有继承的样式,加上!importanrt可以覆盖父级的样式。
推荐:《HTML视频教程》
以上就是css样式怎么把按钮变圆的详细内容,更多请关注zzsucai.com其它相关文章!