Usando o item de flutuação saiu do fluxo pai como consertar
/*HTML*/
<div class="clearfix">
<div style="float: left;">Div 1</div>
<div style="float: left;">Div 2</div>
</div>
/* Css */
.clearfix::after {
content: " ";
display: block;
height: 0;
clear: both;
}
Wandering Wryneck