gpt4 book ai didi

css - 在 CSS 中降低高度的形状按钮

转载 作者:太空宇宙 更新时间:2023-11-03 22:43:14 25 4
gpt4 key购买 nike

我们需要指导来创建如下所示的按钮 CSS。请让我们知道它是否可以使用 CSS,让我们知道是否有任何示例可以让我改进形状。 enter image description here

最佳答案

使用伪元素很容易:before

.box {
height:40px;
width:200px;
background-color:Orange;
position:relative;
display:inline-block;
border-radius:0px 0px 5px 0;
text-align:center;
font-weight:bold;
font-family:arial;
color:#fff;
font-size:20px;
line-height:50px;
}
.box:before {
position:absolute;
content: "";
width: 0;
height: 0;
border-top: 20px solid Orange;
border-right: 197px solid transparent;
bottom:-20px;
left:0;
border-radius:0px 0px 0px 5px;
}
<div class="box">+ADD NEW</div>

关于css - 在 CSS 中降低高度的形状按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43116263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com