Created
July 26, 2022 06:14
-
-
Save gmcusaro/b599c7493542e39f067ad0cc6afb384d to your computer and use it in GitHub Desktop.
Shorthand width property
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
border: 5px solid red; | |
width: 100%; | |
max-width: 600px; | |
padding: 0 1em; | |
margin: 0 auto; | |
} | |
/* this can become */ | |
.container { | |
border: 5px solid red; | |
width: min(100% - 2rem, 600px); | |
margin-inline: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment