Grid Layout

Example using CSS grid layout.

Preview

Code

<div style="display:grid;grid-template-columns:1fr 1fr;gap:10px;">
<div style="background:#ddd;padding:10px;">Grid Item 1</div>
<div style="background:#ccc;padding:10px;">Grid Item 2</div>
</div>

More HTML Layout Examples (7)