I have created following html layout.
<div class="main-section">
<div class="column-one">Column left</div>
<div class="column-two">Column left</div>
<div class="column-three">Column right</div>
</div>
I want to create 2 column section like below:
------------------------------------
| | |
| Column One | Column Three |
| Column Two | |
------------------------------------
Is there any way to make like this? Only for CSS, Not need to js or jquery. Also we need to achive this without change html layout. Use only css for this.
It is not similar question with another.