使div的文本部分透明

时间:2014-08-28 22:32:11

标签: html css html5 css3

我需要找到一种方法来通过div中的文本查看div后面的图像:

E.g。

enter image description here

我将字体作为网络字体。这是否可以在不进行图像替换的情况下实现?

1 个答案:

答案 0 :(得分:3)

仅使用CSS完成规范的方法之一是完美地重叠两个背景图像,从而创建您所描述的“透明”效果。这是一个小提琴:http://jsfiddle.net/v780v1Ln/

注意:填充等会改变元素的尺寸,并影响必须为背景图像设置的坐标。

HTML:

<div id = "wrapper">
    <h1><span>DRD</span></h1>
</div>

CSS:

* {
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
    background: #e2e2e2;
}

#wrapper {
    position: absolute;
    width: 70%;
    height: 50%;
    top: 25%;
    left: 15%;
    background: url(http://i58.tinypic.com/2vdieso.jpg)
                no-repeat
                0 0/500px 362px;
}

#wrapper > h1 {
    background-color: #fff;
    text-align: center;
    position: absolute;
    padding: 0 55px 0 25px;
    top: 25px;
    left: 25px;
}

#wrapper > h1 > span {
    font: bold 70px/1 Sans-Serif;
    text-transform: uppercase;
    background: url(http://i58.tinypic.com/2vdieso.jpg)
                no-repeat
                -45px -25px/500px 362px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}