the image says what I want to do

image

link|improve this question

I don't understand what your question is – Pekka May 9 '11 at 20:49
Have you tried absolutely positioning the div with the box shadow? – Matt Ratleph May 9 '11 at 20:50
1  
Bialy ... not having a proper text description of the issue makes this not that useful for people who happen upon this question in the future – Sam Saffron May 10 '11 at 2:49
feedback

2 Answers

up vote 3 down vote accepted

Either:

  • Put some margin on the top one's left side
  • Remove overflow-hidden from the grey div
  • Postion the top box with position:relative, and increase the z-index
link|improve this answer
1  
well, after some search, there was a bigger container div (containing the gray one) with hidden overflow. Thanks Rich :) – Bialy May 10 '11 at 1:31
It's always one of those three! – Rich Bradshaw May 10 '11 at 7:27
feedback

this might help:

{
-moz-border-radius: 5px;
border-radius:5px;

-moz-box-shadow: 3px black;
-webkit-box-shadow:3px black;
box-shadow:3px black;
}
link|improve this answer
I suspect that the "this is what happens" box includes this CSS already. – Rich Bradshaw May 9 '11 at 21:00
feedback

Your Answer

 
or
required, but never shown

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