gpt4 book ai didi

html - 我如何使用CSS来制作这个?

转载 作者:太空宇宙 更新时间:2023-11-04 11:47:39 24 4
gpt4 key购买 nike

enter image description here

我怀疑使用线渐变?我知道怎么做椭圆,但我就是不明白如何让红线穿过中间?

最佳答案

我会做这样的事情: DEMO FIDDLE

CSS:

#container {
position: relative;
width: 200px;
background-color:black;
z-index:-2;
padding: 10px 0;
text-align:center;
}
#line {
position: absolute;
top: 50%;
width: 80%;
left:10%;
height: 1px;
box-shadow: 1px 1px 20px 5px red;
z-index:-1;
background-color: red;
}

#text{
color:white;
font-weight:bold;
text-transform:uppercase;
letter-spacing:8px;
text-shadow: 1px 1px 1px #ccc
}

HTML:

<div id="container">
<div id="text">Text</div>
<div id="line"></div>
</div>

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

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