Skip to content

Instantly share code, notes, and snippets.

@kobitoDevelopment
Created April 10, 2025 03:33
Show Gist options
  • Save kobitoDevelopment/3a5c5c794c29af946b13e91d206136be to your computer and use it in GitHub Desktop.
Save kobitoDevelopment/3a5c5c794c29af946b13e91d206136be to your computer and use it in GitHub Desktop.
.wrapper{
display:grid;
}
.container{
max-width:1200px; /* これを消すとはみださなくなる*/
display: grid;
grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
}
<div class="wrapper">
<div class="container">
<div class="box">1</div>
<div class="box">2</div>
<div class="box">3</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment