Skip to content

Instantly share code, notes, and snippets.

@itsdonnix
Created April 28, 2022 06:44
Show Gist options
  • Save itsdonnix/6120794f210c7bb0a3e9106f751ba338 to your computer and use it in GitHub Desktop.
Save itsdonnix/6120794f210c7bb0a3e9106f751ba338 to your computer and use it in GitHub Desktop.
CSS Container Trick
.container {
--max-width: 60rem;
--padding: 2rem;
max-width: min(100% - var(--padding), var(--max-width));
margin-inline: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment