I'm interested to find which way of creating box shadows with css is most effective. But that I mean : ease of implementation, flexibility, and cross browser compatibility.

link|improve this question

62% accept rate
feedback

5 Answers

up vote 1 down vote accepted

Onion skinning is my personal favorite.

An example can be found in this alistapart article.

link|improve this answer
feedback

See existing question:

http://stackoverflow.com/questions/253868/css-shadows-on-3-sides#253915

link|improve this answer
None of the presented solutions fit the bill in my opinion. – Nikola Stjelja Nov 5 '08 at 19:53
feedback

One way to do it, making it work easely and with cross browser coherency, is the jQuery Shadow plugin. If you don't overuse, it won't slow the page rendering. Otherwise, you could just wait until CSS3 becomes widely used ;)

link|improve this answer
I need to do it without resorting to hacks. Using js is one. – Nikola Stjelja Nov 5 '08 at 19:54
feedback

The way I find most effective currently is this:

The CSS rules needed :

    .shadow{
      position:relative;
      display:block;
      background-color:#bbb;
      border:1px solid black;
    }

    .shadowed_item{
        position:relative;
        border:1px solid black;
        background-color:white;
        top:-5px;
        left:-5px;
    }

HTML code on which the CSS is applied:

<div class='shadow'>
    <div class='shadowed_item'>I have a shadow.</div>
</div>

I found it very simple to implement, flexible and it works the same on FF 3, IE 6 & 7.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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