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

I've got a problem. I've got a fixed image in something what is a header. I also have a div. The div has to scroll. But it scrolls under the fixed image.

Is there a fix for this problem? Or a workaround??

share|improve this question

1 Answer

up vote 1 down vote accepted

u could use z-index to decide who can appear in front of one another

share|improve this answer
Already tried... Doesn't work.. Don't know why... – dododedodonl Oct 8 '10 at 22:39
1  
Make sure the element with the z-index has a position property. Z-index only works with positioned elements. – Tyler Treat Oct 8 '10 at 22:42
Thanks ttreat31, didn't know that ;) – dododedodonl Oct 8 '10 at 23:04

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.