Reputation: 3859
HI i want to give my div's some border but when i do a box is created with all the borders but the contents of teh div are not surrounded!! Any suggestions?
Upvotes: 5
Views: 6410
Reputation: 449385
try
overflow: auto
Upvotes: 20
Reputation: 66436
You must have some floating content inside.
<div id="divWithBorderIssue"> blah <div style="clear:both;"></div> </div>
You could also use a clearfix
edit: of course if you provided the code it would be easier to help you
Upvotes: 1