答案 0 :(得分:2)
使用rgba
并将不透明度设置为0(最后一个值)。
color:rgba(0, 0, 0, 0);
请参阅here
<强>更新强>
现在你已经澄清了你的问题...... SVG将是你最好的选择。见fill-opacity
答案 1 :(得分:0)
尝试red,green,blue,alpha
color
值
div{
width: 50%;
height: 50%;
background: green;
}
p{
font-size: 30px;
font-weight: bolder;
color: rgba(0,0,0,.1);
}
<div>
<p> your text </p>
</div>