两条线与阴影的文本背景

时间:2013-04-03 13:25:19

标签: html css

这就是我想要实现的目标:

enter image description here

但是我不能让背景与文本一样长,同时保留整个内容的阴影......我只是得到这个:

enter image description here

正如你所看到它会产生两个阴影......这是我的标记和css:

<span class="interior_title">Samsung, HP Pop-Tops Do Double Duty <br>Rich Jaroslovsky</span>

span.interior_title{
    background: #c7c7c9;
    font-size: 50px;
    color: #2f2f31;
    width: 550px;
    font-family: 'chaletcomprime';
    margin: 0 auto;
    text-transform: uppercase;
    line-height: 47px;
    padding: 0px 15px;
    margin-left: 90px;
    -moz-box-shadow: 0 0 7px #000;
    -webkit-box-shadow: 0 0 7px #000;
    box-shadow: 0 0 7px #000;
}

关于如何做的任何想法?

1 个答案:

答案 0 :(得分:0)

Example

它接近你想要的。 我这样做了。两个元素在另一个元素下面浮动。相同的样式只有宽度不同。

<span class="one">Extra line here bal bal bal </span>
<span class="two">Line TwoM<span>

现在问题是在.two上投射的额外阴影,我通过使用

修复了
.two:before{
    background: tan;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: -10px;
    width: 100%; }

不要担心IE,因为:before在IE8上工作,而box-shadow在IE9停止。