我是靠谱客的博主 柔弱心锁,最近开发中收集的这篇文章主要介绍css样式怎么把按钮变圆,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本教程操作环境: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样式怎么把按钮变圆的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是柔弱心锁为你收集整理的css样式怎么把按钮变圆的全部内容,希望文章能够帮你解决css样式怎么把按钮变圆所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(75)

评论列表共有 0 条评论

立即
投稿
返回
顶部