How to move a HTML list below a div -
at url, i'd move html list form below image.
i have <div class="calculators" style="width: 50%; float: left;">
, html form below this, form ends on right of <div>
.
how add below <div>
?
thanks.
try adding a
<br class="cleanbreak">
at end of div. it's this:
<div class="calculators" style="width: 50%; float: left;"><br class="cleanbreak">
and add css:
.cleanbreak{ clear:both; }
or if want inline css did div,
<br style="clear:both;">
and should fix it. if doesn't suggest showing more code.
this pressing "enter" on keyboard, skips line , nice use make things less jumbled.
Comments
Post a Comment