What is the best way to align these two div
on the same line?
<div class="main_one">
<div class="number_one">Title A</div>
</div>
<div class="main_two">
<div class="number_two">Title B</div>
</div>
<div class="main_three">
<div class="number_three">Title C</div>
</div>
<div class="main_four">
<div class="number_four">Title D</div>
</div>
Currently I have Title A
on top of Title B
from top to bottom looking at the page.
My goal is to have Title A and Title B aligned together on the same line without using HTML and without moving the structure of main_three and main_four.
Based on the way things I structured, I can only use css to achieve that goal.
Any help would be much appreciated.