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

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -