Home:ALL Converter>Trying to make my css grid system responsive

Trying to make my css grid system responsive

Ask Time:2020-08-26T01:22:54         Author:Nathan

Json Formatter

I'm trying to make my grid system (using css) responsive.

#results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
      
}

I've been trying for a while and can't seem to figure it out.

Author:Nathan,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/63584078/trying-to-make-my-css-grid-system-responsive
yy