【发布时间】:2011-04-05 18:28:25
【问题描述】:
我正在使用 -webkit-background-clip 将背景图像限制为 h2 元素中的文本。
我的问题是,-moz-background-clip 的功能是否相同?这似乎只在 webkit 浏览器中有效,这表明它在 Firefox 中还不起作用:
#header h1 a{
background: url(img/logo-overlay.png) no-repeat #000;
-moz-background-clip: text; -webkit-background-clip: text;
color: transparent; -moz-text-fill-color: transparent; -webkit-text-fill-color: transparent;
text-decoration: none;
}
目前,在 Firefox 中,文本是隐藏的(因为 color: transparent 和 text-fill-color: transparent 属性),只有背景图片和颜色在元素的矩形形状中可见。
有什么想法吗?
【问题讨论】:
标签: css