HTML + CSS Layout Sandbox

CSC-329 · Semester V · Web Technology

HTML & CSS Page Layout

Live flexbox demo — change the CSS and watch the page respond.

/* flex.css */

.container { display: flex; flex-direction: row;

justify-content: space-between; gap: 8px; }

A
B
C

The preview is real CSS: switch flex-direction to column and the same boxes stack vertically — the two axes of flexbox in action.