gpt4 book ai didi

css - 为文本制作带有渐变的底部边框

转载 作者:行者123 更新时间:2023-11-28 15:09:25 27 4
gpt4 key购买 nike

我正在尝试制作一个带有渐变的边框底部,我试过这个:

h2{
color: #16DB00;
text-align: left;
border-bottom: 1px solid #FF00C9;
border-bottom-color: -webkit-linear-gradient(left, rgba(255,0,200,1) 0%, rgba(255,0,200,0) 100%);
}

这就是我的目标:

what I want

它淡入 0% alpha 而不是黑色

最佳答案

body {
background-color: black;
}

h2 {
color: #16DB00;
text-align: left;
position: relative;
text-transform: uppercase;
}

h2:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
height: 1px;
width: 100%;
background: linear-gradient(90deg, rgba(255, 0, 200, 1), rgba(255, 0, 200, 0));
}
<h2>test</h2>

关于css - 为文本制作带有渐变的底部边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53090399/

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