Hi,
I have a block that is always floated to the top of a page. When the text of this floated block goes long, it continues on next page (say it occupies half of page x). The problem is that the floated block leaves half of page x blank.
I want text (body content) to be continued after this floated block.
Did anyone come across such a problem?
Here's my CSS definition for the floated block:
.float {
display: block;
float: top;
margin-bottom: 1em;
padding: 0;
clear: both;
}
Thanks,
Somnath
I have a block that is always floated to the top of a page. When the text of this floated block goes long, it continues on next page (say it occupies half of page x). The problem is that the floated block leaves half of page x blank.
I want text (body content) to be continued after this floated block.
Did anyone come across such a problem?
Here's my CSS definition for the floated block:
.float {
display: block;
float: top;
margin-bottom: 1em;
padding: 0;
clear: both;
}
Thanks,
Somnath