#wrap{
 box-shadow: inset 0 10px 30px rgba(0,0,0, 0.75); 
}

The element has 100% width.

Why do I get the scroll bar?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
box-shadow: 10px 30px rgb(0,0,0, 0.75);
link|improve this answer
if I do that, the shadow doesnt show up – Alex Nov 4 '11 at 13:20
True, For support in Opera and IE9 and higher you need to include the official W3C variant of the property, without prefixes: box-shadow – juankysmith Nov 4 '11 at 13:31
I managed to fix it by adding overflow:hidden to the parent element, tx – Alex Nov 4 '11 at 13:47
feedback

Your Answer

 
or
required, but never shown

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