概述
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
css设置button为直角的方法
在css中可以使用border-radius属性来设置元素的圆角边框,border-radius属性的语法为:
border-radius: 1-4 length|% / 1-4 length|%;
登录后复制
其中需要注意的是:
length用来定义圆角的形状,%用来以百分比定义圆角的形状。
button元素在默认情况下是有一些圆角的:
想要将button设置为直角,只需要给button元素添加“border-radius:0px;”或者“border-radius:0%;”样式即可。
示例代码如下:
<!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{
border-radius:0%;
}
</style>
<body>
<button>123</button>
</body>
</html>
登录后复制
或者另一种形式:
<!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{
border-radius:0px;
}
</style>
<body>
<button>123</button>
</body>
</html>
登录后复制
上述两种方法输出结果是相同的:
最后
以上就是成就钢铁侠为你收集整理的css怎样设置button为直角的全部内容,希望文章能够帮你解决css怎样设置button为直角所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复