gpt4 book ai didi

html - 为什么我不能为文本设置透明颜色

转载 作者:太空宇宙 更新时间:2023-11-03 23:14:30 25 4
gpt4 key购买 nike

我有照片,在她的跨度上。

我的 span 背景颜色为白色,我想将文本设置为透明。

像这样: http://justdrop.me/b26e25bf4544a68a4e7b76c73169a4d1.PNG

我试过:

Background-color:white;
color:transparent;

但不工作。

HTML:

<div class="col-md-12 picturebee no-padding">
<img class="beepic" src="img/img7.jpg" alt="Picture bee">
<span class="text">Lorem ipsum dolor!</span>
</div>

CSS

.picturebee{
margin-top:50px;
position: relative;
}
.picturebee span{
position: absolute;
top:30px;
font-size:53px;
color:white;
font-family: 'Cuprum', sans-serif;
left: 35%;
transform: translateX(-26%);
text-shadow: 1.4px 1.4px #222;

}

最佳答案

试试这个 CSS:

.picturebee{
margin-top:50px;
position: relative;
}
.picturebee span{
position: absolute;
top:30px;
font-size:53px;
background-color:white;
font-family: 'Cuprum', sans-serif;
left: 35%;
transform: translateX(-26%);
text-shadow: 1.4px 1.4px #222;

}
.text{opacity: 0.5;}

关于html - 为什么我不能为文本设置透明颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31150391/

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