I have this code:
.four-items-across-container{
display:grid;
grid-template-columns:0px 80% 1fr;
}
I was wondering when I resize the page at width of 800px for example the 1fr column can get another row without media query?
If yes, how?