How do I get an inset CSS3 box shadow to render on top of its children elements?

Problem:

alt text

HTML:

<div id="chatroom">
    <div class="chatmessage"><b>User 1:</b>Test</div>
    <div class="chatmessage"><b>User 2:</b>Test</div>
    <div class="chatmessage"><b>User 1:</b>Test</div>
    <div class="chatmessage"><b>User 2:</b>Test</div>
</div>

CSS:

#chatroom{
    border: 1px solid #CCC;
    height: 135px;
    font-size: 0.75em;
    line-height: 1.2em;
    overflow: auto;
    -moz-box-shadow: inset 0 0px 4px rgba(0,0,0,.55);
    -webkit-box-shadow: inset 0 0px 4px rgba(0,0,0,.55);
}
.chatmessage{
    padding: 4px 2px;
}
.chatmessage b{
    margin-right: 2px;
}
.chatmessage:nth-child(2n) {
    background: #EEE;
}
link|improve this question

53% accept rate
feedback

3 Answers

up vote 7 down vote accepted

cant be done directly from css.. (it is not shadow if it goes above overlapping elements)

you would need to rework your html a bit by adding a div to overlay the shadow..

<div id="chatroom">
    <div class="chatmessage"><b>User 1:</b>Test</div>
    <div class="chatmessage"><b>User 2:</b>Test</div>
    <div class="chatmessage"><b>User 1:</b>Test</div>
    <div class="chatmessage"><b>User 2:</b>Test</div>
    <div class="shadow"></div>
</div>

and your CSS to make the new div have the shadow..

#chatroom{
    border: 1px solid #CCC;
    height: 135px;
    font-size: 0.75em;
    line-height: 1.2em;
    overflow: auto;
    position:relative;
}
.shadow{
    position:absolute;
    left:0px;
    top:0px;
    right:0px;
    bottom:0px;
    -moz-box-shadow: inset 0 0px 4px rgba(0,0,0,.55);
    -webkit-box-shadow: inset 0 0px 4px rgba(0,0,0,.55);
  }
link|improve this answer
Thanks! You're quick! :) – Ronald Mar 8 '10 at 15:54
I have a follow up question. As you can see #chatroom has an overflow set to auto so it is scrollable once filled with enough content. When you scroll the div, the shadow element scrolls as well. Is there any easy way to match the sizes? I tried setting the shadow's height using scrollHeight, but that seems flaky. Any ideas? – Ronald Mar 10 '10 at 9:00
1  
So we're basically hacking stuff again. This is sad. :( – Jaroslav Záruba Jul 23 '10 at 19:44
feedback

I recommend using box-shadow along with -moz-box-shadow and -webkit-box-shadow. This is future (and Opera 10.5 ;)) compatible.

link|improve this answer
feedback

Change the background-color to also be RGBA in browsers that can handle it (any that can handle the shadow):

.chatmessage:nth-child(2n) {
    background : #EEE;
    background : RGBA(0, 0, 0, .066);
}
link|improve this answer
mind explaining why this was down-voted when it works perfectly well and is a better solution than the accepted answer? any browser that supports box-shadow also supports RGBA. – cwolves Mar 5 at 2:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.