Answers for "display grid explained"

CSS
1

what is display grid css

grid-template-rows: repeat(4, 100px);
grid-template-columns: repeat(3, 1fr);
Posted by: Guest on August-14-2021
0

display grid

[class^="box-"] {
  background-color: skyblue;

/* To place the letter at the center */
  display: grid;
  place-items: center;
}
Posted by: Guest on August-29-2021

Browse Popular Code Answers by Language