css,透明文本与不透明背景

时间:2014-04-29 12:36:30

标签: css

是否可以在彩色背景上书写透明文字,如下图所示,仅限css?

由于

enter image description here

3 个答案:

答案 0 :(得分:2)

没有

因为背后仍有白色背景,您必须在文本下剪切图层。

我认为最佳解决方案是使用图像。

答案 1 :(得分:1)

This page显示了一种使用html中的内联svg将图像用作文本填充模式的方法。不过,我想它并不完全是你所追求的。

答案 2 :(得分:0)

你需要这个......

html

 <h1>SAMPLE TEXT</h1>

和css

h1
{
 background: red;
 -webkit-text-fill-color: transparent; //for chrome only
}