cdugga
cdugga

Reputation: 3859

div border not surrounding content

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

Answers (2)

Pekka
Pekka

Reputation: 449385

try

 overflow: auto

Upvotes: 20

marcgg
marcgg

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

Related Questions