Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
CSS

CSS Grid Areas

Name regions with grid-template-areas for readable templates.

CSS Grid Areas — a practical guide to CSS grid-template-areas with clear examples you can reuse in real projects.

CSS Tutorial Series (70/109). Prefer one article? Read the complete CSS tutorial.

Short description

Excellent for responsive rearranging of header/main/sidebar/footer.

Areas

.layout {
  grid-template-areas:
    "header header"
    "side main"
    "footer footer";
}
header { grid-area: header; }

Leave a reply

Your email address will not be published. Required fields are marked *