htmlcssjavascript28
Silver Coder
code: Edit fiddle - JSFiddle - Code Playground
The buttons are not collapsing from 3 to 2 to 1.
I don’t understand why it is not working.
How do I get it to work?
The buttons are not collapsing from 3 to 2 to 1.
I don’t understand why it is not working.
How do I get it to work?
CSS:
@media (max-width: 536px) {
.buttonContainerC {
grid-template-columns: repeat(2, 183px);
}
}
@media (max-width: 172px) {
.buttonContainerC {
grid-template-columns: repeat(1, 183px);
}
}
.buttonContainerC {
display: grid;
grid-template-columns: repeat(3, 183px);
/*align-content: center;
justify-content: center;*/
align-items: center;
max-width: 569px;
gap: 10px;
}
Last edited: