Как передвинуть блок, чтобы результат получился, как на картинке?
<div class="left-blocks">
<article class="firs-b">
<h3>Мальдивские острова
</h3>
<span>от 55 000 р
</span>
<a class="btn-more" href="">Подробнее
</a>
</article>
<article class="second-b">
<h3>Горящий тур на остров крит
</h3>
<span>от 30 000 р
</span>
<a class="btn-more" href="">Подробнее
</a>
</article>
</div>
<div class="right-block">
<article class="three-b">
<h3>
Номера люкс
</h3>
<span>от 5 000 р
</span>
<a class="btn-more" href="">Подробнее
</a>
</article>
</div>
.left-blocks {
}
.firs-b {
width: 573px;
height: 258px;
left: 0px;
top: 0px;
outline: 3px solid rgb(246, 0, 0);
}
.second-b {
width: 573px;
height: 258px;
left: 0px;
top: 0px;
outline: 3px solid rgb(246, 0, 0);
}
.three-b {
width: 573px;
height: 540px;
left: 971px;
top: 314px;
outline: 3px solid rgb(246, 0, 0);
}
.right-block {
}