CSS – transition on grid-template-columns fr to px value
I have this HTML / CSS snippet: .test123 { grid-template-columns: 255px 255px; transition: 200ms; display: grid; gap: 30px; .card { border-radius: 50px; border: 1px solid #BBD0FB; } .c1 { background-color: red; width: 100%; height: 100px; } .c2 { background-color: blue;…