Ubuntu – @container queries don't change grid-template-columns value
Having a page where we require that if container width is below view size then change 5 columns into 2 columns and trying below: .list { background-color: grey; display: grid; grid-gap: 4px; grid-template-columns: repeat(5, 1fr); container-type: inline-size; } .letter {…