gpt4 book ai didi

html - 使用黑色背景但透明文本的div使文本透明

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

我想制作一个黑色背景的 div,但文本应该是透明的并带有红色边框。有什么想法吗?

直到现在我已经能够使我的文本透明,但是当我向 div 添加背景颜色时,它会使文本背景具有相同的颜色。

See this fiddle

HTML:

<div class="text">
<h1>EXPERIENCES</h1>
</div>

CSS:

.text {
position: absolute;
top: 0;
background-color: #000;
overflow: hidden;
}
.text h1 {

font-size: 112px;
-webkit-text-stroke-color: red;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1px;

}

最佳答案

尝试:

div { background:rgba(0,0,0,1);
color:rgba(255,255,255,0.5);
-webkit-text-stroke-color: red;
-webkit-text-stroke-width: 3px;
font-size:100px;
}

关于html - 使用黑色背景但透明文本的div使文本透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26769861/

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