I have the following code:
A standard approach is to add a clearing div between the two floating block level elements:
<div style="clear:both;"></div>
There's a class in bootstrap for it
class="clearfix";
add style="clear:both;"
to the "adm" div
.
Sometimes clear will not work. Use float: none
as an override
Okay I just realized the answer is to remove the first float left from the first DIV. Don't know why I didn't see that before.
You could modify .adm
and add
.adm{
clear:both;
}
That should make it move to a new line