gpt4 book ai didi

html - 如何在纯 CSS 中制作这一行?

转载 作者:行者123 更新时间:2023-12-02 15:45:03 25 4
gpt4 key购买 nike

enter image description here

我试过用这个:

border: 1px solid #7BE34A;
box-shadow: 0px 4px 25px rgba(123, 227, 74, 0.25);

border: 1px solid #28780D;
box-shadow: 0px 4px 25px rgba(40, 120, 13, 0.25);

来自 figma,但它不起作用

最佳答案

idk 如果这是你正在寻找的,但这里有一个例子:

.line {
border-top : 1px solid #000;
position : relative;
width : 100px
}
.line:after {
content : "";
position : absolute;
border-right : 1px solid #000;
height : 10px;
right : 0;
bottom : 0;
}
.line:before {
content : "";
position : absolute;
border-top : 1px solid #000;
height : 10px;
width : 100px;
right : -100%;
bottom : 110%;
}
<br>
<div class="line">
</div>

关于html - 如何在纯 CSS 中制作这一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74500631/

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