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
feedback
|
|
Do this:
its actually much simpler, what ever you set the blur to (3rd value), set the spread (4th value) to the negative of it. | |||||||
feedback
|
|
You can use two elements, one inside the other, and give the outer one
Alternatively, float the outer element to cause it to shrink to the size of the inner element. See: http://jsfiddle.net/QJPd5/1/ | |||
|
feedback
|
|
Try this
You can see it in http://jsfiddle.net/wJ7qp/ | ||||
|
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. | |||||||||||
feedback
|