I need the text of the "left" div which are 2 lines, is in the lower part so that it is aligned below with the text on the right side (div "dcho") which are 7 lines. thanks in advance!
.cabecera {
background-color: #2c2b2b;
width: 100%;
color: #ffffff;
padding: 2% 5% 1% 5%;
font-family: 'Questrial';
overflow: auto;
}
.izda {
width: 70%;
float: left;
min-width: 500px;
}
.dcha {
width: 30%;
float: right;
}
.dcha p{
font-family: "Lobster";
font-size: 2.2em;
font-weight: lighter;
color: deepskyblue;
}
h1{
<div class="cabecera">
<div class="izda">
<h1>Promociones Comerciales</h1>
<h5>Las mejores promociones para tu negocio!</h5>
</div>
<div class="dcha">
<p>Seguros<br>Hipotecas<br>Imprenta<br>Copistería<br>Rotulación<br>Merchandising<br>...</p>
</div>
</div>