gpt4 book ai didi

html - 我怎样才能用 css 复制它?

转载 作者:可可西里 更新时间:2023-11-01 13:48:26 24 4
gpt4 key购买 nike

所以我正在尝试使用一些 CSS,并希望为我的标题赋予特定的样式。我在想的是我在这里制作的图像:

Example image

我试着用谷歌搜索有同样需求的人,但我找不到真正想要的东西。

这是我目前所拥有的:

.test {
position: relative;
font-size:40px;
height:40px;
width:400px;
}
.test>span {
display: block;
overflow: hidden;
position: absolute;
left: 0;
width: 100%;
height: 60%;
color: #31FF5A;
}
.test>.top{
z-index:2;
top:0;
}
.test>.bottom{
color: black;
height: 100%;
z-index:1;
bottom: 0;
}
<div class="test">
<span class="top">TEXT</span>
<span class="bottom">TEXT</span>
</div>

你们谁能帮帮我?或者至少在正确的方向 :P

谢谢!

最佳答案

使用边框半径属性。

.test {
position: relative;
font-size:40px;
height:40px;
width:400px;
}
.test>span {
display: block;
overflow: hidden;
position: absolute;
left: 0;
width: 100%;
/* height: 60%; */
color: #31FF5A;
border-bottom-left-radius: 90%;
}
.test>.top{
z-index:2;
top:0;
}
.test>.bottom {
color: black;
height: 100%;
z-index: 1;
bottom: 0;
border-bottom-right-radius: 346%;
}
<div class="test">
<span class="top">TEXT</span>
<span class="bottom">TEXT</span>
</div>

关于html - 我怎样才能用 css 复制它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38631979/

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