How do I do this? I want my element to look as though it has a shadow underline. I dont want the shadow for the other 3 sides

link|improve this question

48% accept rate
2  
Duplicate of stackoverflow.com/questions/5460129/… – Lea Verou Mar 29 '11 at 19:40
feedback

4 Answers

Do this:

box-shadow: 0 4px 2px -2px gray;

its actually much simpler, what ever you set the blur to (3rd value), set the spread (4th value) to the negative of it.

link|improve this answer
1  
This is by far the best method. Pure css3, no hacks. – thelastshadow Nov 4 '11 at 16:15
Thanks for this. – Ian Devlin Jan 20 at 12:14
feedback

You can use two elements, one inside the other, and give the outer one overflow: hidden and a width equal to the inner element together with a bottom padding so that the shadow on all the other sides are "cut off"

#outer {
    width: 100px;
    overflow: hidden;
    padding-bottom: 10px;
}

#outer > div {
    width: 100px;
    height: 100px;
    background: orange;

    -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

Alternatively, float the outer element to cause it to shrink to the size of the inner element. See: http://jsfiddle.net/QJPd5/1/

link|improve this answer
feedback

Try this

-moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.75);
-webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);

You can see it in http://jsfiddle.net/wJ7qp/

link|improve this answer
feedback

box-shadow: none | "shadow" [,"shadow"]*

where "shadow":

inset "shift in x" "shift in y" "blur radius" "tension" "color"

none : Cancels the addition of the shadows.

inset : Shadow appears inside the element. Optional.

link|improve this answer
2  
is this css? Ive never seen such values – WillingLearner Dec 30 '10 at 10:06
1  
This is a posting of a spec, similar to Mozilla's: developer.mozilla.org/en/CSS/-moz-box-shadow – Jacob Hume May 19 '11 at 19:30
WillingLearner, I wrote a spec – Zhasulan Berdybekov Feb 29 at 3:59
feedback

Your Answer

 
or
required, but never shown

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