CSS Block Level Grid
CSS Block Level Grid
CSS Grid is a two-dimensional CSS layout system. To set an HTML element into a block-level grid container use display: grid
property/value. The nested elements inside this element are called grid items.
#grid-container {
display: grid;
}
Join the conversation