Answers for "css grid force same width"

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

Browse Popular Code Answers by Language