将阴影应用于h2时,框阴影显示在文本周围而不是文本周围

时间:2011-10-27 23:00:40

标签: html css css3

HTML:

<div class="div1">
    <h2>Set RSVP & Check in</h2>
    <p>
        Set RSVP to remind all events you plan to go.
    </p>
</div>

CSS:

.div1 {
    float: left;
    margin: 0 20px 0 0;
    padding: 0;
    width: 300px;
    height: 156px;
}

.div1 h2 {
    color: #fff;
    font-size: 24px;
    font-weight:bold;
    box-shadow: 1px 1px 0 black;
}

边框看起来像“桌边框”而不是文字边框:

http://screencast.com/t/OrFfBL9MK

1 个答案:

答案 0 :(得分:5)

我认为你把box-shadow和文字阴影搞混了。

试试这个:

.div1 h2 {
    color: #fff;
    font-size: 24px;
    font-weight:bold;
    text-shadow: #000000 1px 1px 0px;
}