Имеются блоки с контентом :
Если добавить текст в один из блоков, то нижний блок съезжает в сторону :
Как сделать, чтобы они оставались на своих местах и сохранялась горизонтальная линия ?
<section class="content-wrapper">
<figure class="content-block">
<input type="checkbox" id="1">
<label for="1">
<div class="content-image "></div>
</label>
<div class="content-block-text">
<p class="heading">heading</p>
<p>Phasellus facilisis, nunc in lacinia auctor, eros lacus aliquet velit, quis lobortis risus nunc nec nisi.
Maecenas et turpis vitae velit volutpat porttitor a sit amet est.
Uthasellus facilisis, nunc in lacinia auctor, eros lacus aliquet velit, quis lobortis risus nunc nec
</p>
</div>
</figure>
<!-- и так далее -->
</section>
.content-wrapper {
width: 70%;;
margin: 0 auto;
float: left;
}
.content-block {
width: 48%;
float: left;
margin: 0;
margin-top: 6%;
font-size: 16px;
}
.content-block:nth-child(odd) {
float: right;
}
.content-image {
width: 100%;
padding-bottom: 55%;
background:#89c39b;
}