Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Apple's website has a lot of visually appealing elements and sometimes the fledgling web developer may look at certain elements and wonder just how to reproduce that look. So I pose the question (and will provide the answer):

How does Apple do the drop shadowbox with rounded corners?

share|improve this question
2  
have you tried using the stylesheet inspector in the Developer Tools to find out? – Spudley Jan 14 '11 at 15:41

4 Answers

Usually it's done by just designing the box in photoshop and exporting it with the shadow already on it. However, there are new CSS3 techniques that allow you to do it thought code:

See this website

share|improve this answer
Yea I've used the Photoshop technique before, but it's not very flexible if you want your site to be dynamic and your shadowboxes to be able to dynamically change size and retain the effect. Thanks for the input :) – TheEternalAbyss Jan 14 '11 at 15:43

As mentioned I have the answer:

the css for the effect is as follows

    .content {
    background-color: #fff;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 4px 4px 4px 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 4px 4px 4px 4px;
    border-color: #E5E5E5 #DBDBDB #D2D2D2;
    border-style: solid;
    border-width: 1px;
    height: 210px;
    width: 320px;

}

Check out a jsfiddle of this code to see it in action.

Hope this helps anyone looking for a quick and easy shadowbox.

~TheEternalAbyss

share|improve this answer
1  
I think they’re actually using a bit more CSS than that, seeing as the code you’ve posted doesn’t work in Safari. – Paul D. Waite Jan 14 '11 at 15:44
It doesn't work for safari? Hmm. I'll look into that. Thanks – TheEternalAbyss Jan 14 '11 at 15:46
No, you need -webkit- not -moz- for safari – brian_d Jan 14 '11 at 15:47
Yup just added it. Thanks :) – TheEternalAbyss Jan 14 '11 at 15:49

Google Chrome’s Inspector or Firefox’s Firebug extension can show you the HTML and CSS they’re using.

share|improve this answer

you should add

-webkit-box-shadow

for webkit engine (safari, chrome) based browsers

share|improve this answer
Yup, added it! :) thanks! – TheEternalAbyss Jan 14 '11 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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