24.11.2023
3
Like
66
Views
A grid can be defined as an intersecting set of horizontal lines and vertical lines. CSS Grid layout divides a page into major regions. It defines the relationship between the parts of a control built from HTML primitives in terms of layer, position, and size. Grid property offers a grid-based layout system having rows and columns. It makes the designing of web pages easy without positioning and floating.
Similar to the table, it enables a user to align the elements into rows and columns. But compare to tables, it is easy to design layout with the CSS grid. We can define columns and rows on the grid by using grid-template-rows and grid-template-columns properties.
The CSS grid property is supported in browsers such as Google Chrome, Internet Explorer, Firefox, Safari, and Opera.
OUTPUT
.container
class is set to display: grid
, defining it as a grid container.grid-template-columns
defines the number and size of columns. In this case, it creates three columns of equal width.grid-gap
sets the gap between grid items..item
becomes a grid itemYou need to log in to be able to comment!