Two Column Layout

Example creating two columns.

Preview

Code

<div style="display:flex;">
<div style="flex:1;background:#f0f0f0;padding:10px;">
Left Column
</div>
<div style="flex:1;background:#e0e0e0;padding:10px;">
Right Column
</div>
</div>

More HTML Layout Examples (7)