Answers for "grid columns different width"

CSS
0

css grid make all columns same width

grid-template-columns: repeat(3, minmax(0, 1fr));
Posted by: Guest on September-22-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