.right {
float: right;
border: 3px solid #73AD21;
}
<div>
<div class="right">
<p>testtesttest.</p>
</div>
<div style="text-align: center;">
<h2>Middle</h2>
<p>blablabla</p>
</div>
</div>
I want that the Middle
is centered and the other box is on the right. In my code the Middle
is not centered. How can I do that?