Answers for "set grid width equally to all grid items"

CSS
2

div inline grid 100% width

.customGrid {
	display: inline-grid;
    grid-template-columns:100%;
}
Posted by: Guest on September-03-2021
1

set grid column width css

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
}
Posted by: Guest on October-22-2021

Browse Popular Code Answers by Language