I have a DIV within which I place form controls using style:position: absolute;top ... etc
and after the DIV I want a single paragraph.
I was expecting
---------------
| |
| DIV |
---------------
PARA
but am getting
---------------
| PARA |
| DIV |
---------------
You must manually set the
heightof thedivto however high it should be based on what’s inside it. Once you do this, the paragraph will be placed below thediv.Without a
heightversus with aheight.It’s either that, or don’t place your “form controls” with
position: absolute.