Is there a way to align these two div
side by side?
<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, Title A and Title B are displayed one on top of the other.
I would like to have them appear next to each other without altering the structure of main_three and main_four. This alignment must be achieved using only CSS, with no changes made to the HTML code.
Your suggestions on how to achieve this would be greatly appreciated.