responve grid css 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 media queries
<div class="user-profile">
<span class="user-profile__username">
Rob Ott
</span>
<img src="avatar.jpg" class="user-profile__avatar"/>
<p class="user-profile__bio">
made of metal
likes animals
hates water skiing
</p>
</div>