Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个背景图片,上面有一个白色的 div。我希望该 div 中的文本是透明的,以便您可以“透视”到背景图像。这有可能吗?
应该看起来像这样:
您需要将其用于您的文本CSS
CSS
-webkit-text-fill-color: transparent;
在您的白色 div 上使用以下 CSS 属性来显示底层图像。
background: rgba(255, 255, 255, 0.6);
而不是文本,只需使用具有像素“整体”的 GIF 图像(文本没有像素,像素围绕它)。这可能是兼容性最高的解决方案。