Answers for "how to use the same width in grid"

CSS
2

div inline grid 100% width

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

css grid make all columns same width

grid-template-columns: repeat(3, minmax(0, 1fr));
Posted by: Guest on September-22-2021

Code answers related to "how to use the same width in grid"

Browse Popular Code Answers by Language