gpt4 book ai didi

css - 添加三 Angular 形 Angular 按钮 css

转载 作者:行者123 更新时间:2023-12-03 09:00:03 24 4
gpt4 key购买 nike

我想复制这个:http://prntscr.com/k5wp2t我尝试使用此代码,但我需要帮助才能更好地设置它。

<div class="button">MAGGIORI INFORMAZIONI</div>

.button {
position: relative;
display: block;
width: 120px;
height: 50px;
background: blue;
}

.button:after{
position: absolute;
bottom: 0;
height: 0;
width: 0;
left: 30%;
border: 30px solid transparent;
border-bottom-color: red;
content: "";
}

谢谢

最佳答案

请使用这个

.button {
position: relative;
display: block;
width: 120px;
height: 50px;
background: blue;
padding-right: 40px;
overflow: hidden;
color:#fff;
padding-left:30px;
line-height:22px;
}

.button:after{
position: absolute;
bottom: 0;
height: 50px;
width: 30px;
right: -14px;
background: red;
content: "";
z-index: 1000;
transform: skew(-30deg);
}
<div class="button">MAGGIORI INFORMAZIONI</div>

关于css - 添加三 Angular 形 Angular 按钮 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51318510/

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