这篇文章主要为大家展示了“CSS如何设置button为直角”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“css如何设置button为直角”这篇文章吧。
这篇文章主要为大家展示了“CSS如何设置button为直角”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“css如何设置button为直角”这篇文章吧。
在css中,可以利用“border-radius”属性设置button为直角,只需要给button元素添加“{border-radius:0%;}”或者“{border-radius:0px;}”样式即可。
本教程操作环境: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为直角”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网node.js频道!
--结束END--
本文标题: css如何设置button为直角
本文链接: https://lsjlt.com/news/86544.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0