Div Extends Beyond Wrapper Div
I have a div inside a wrapper div. I noticed that it (the inner div) extends beyond the wrapper div. I'm using IE8. Here's the code: #div_wrapper_slideshow { position:absolute; he
Solution 1:
You give your wrapper div a fixed height - 275px. So if the inside div gets too big it flows out and over. You can use the overflow
css parameter for other behaviors.
Post a Comment for "Div Extends Beyond Wrapper Div"