Skip to content Skip to sidebar Skip to footer

Div Content Overlapping Each Other

This problem is related to how i can show div with absolute position regarding the div, Not the page. I have div#Div_Report, Which has multiple page div#page1, div#page2,..., And e

Solution 1:

Try this CSS:

#page1, #page2 {
    position:relative;
    float:left;
}

... it isn’t, by any means, a nice solution ... but it solves the problem with things overlapping.

Post a Comment for "Div Content Overlapping Each Other"