Reputation: 10570
This is my two divs:
This is the screen:
when I minimuse the browser, this overlapping happens
what should I do please?
the left div size is keep static even when I mimizie the browser, that is why the right div becoems over the left div
when i tried Ruddy's solution, I got this:
Upvotes: 0
Views: 783
Reputation: 36
Try min-width on the right hand container div.
E.g.
min-width: 200px;
Upvotes: 1
Reputation: 3763
Well it can perfectly be solved via responsive design but one thing you can try is to use percentages(%) for most of the html elements to manage the element overlapping problem this may help you upto some extend otherwise responsive web design is the necessary solution !
Upvotes: 0