Necesito posicionar un div al lado del otro, el de noticias contiene a a los otros dos, pero no logro ponerlo uno a la par del otro con float left y right
HTML:
CSS:
Código HTML:
Ver original.noticias {
background:rgba(255,255,255,1);
width:80%;
height:700px;
margin:auto;
border-radius:20px;
}
.texto-noticias {
width:70%;
height:150px;
background:red;
float:lef;
}
.div-imagenes {
width:20%;
height:50px;
background:blue;
float:right;
}