Open In App

What is CSS Grid Layout ?

The CSS Grid Layout is a powerful two-dimensional layout system that allows you to design complex web layouts with rows and columns. It provides a more flexible and efficient way to create grid-based designs compared to traditional methods.

Note: An HTML element becomes a grid if that element sets display: grid; in style section or inline-grid.

Syntax

.class {
display:grid;
}

Features

Article Tags :