Csstricks Resposive Grid Code Example


Example 1: responsive css grid


@supports (display: grid) {
main {
max-width: 10000px;
margin: 0;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
grid-gap: 1rem;
}
}

Example 2: css grid responsive


grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy