Forked from vanaf1979/fluid-container-with-min.html
Created
December 8, 2020 11:43
-
-
Save mharleydev/94bce03c704c611a64ab64fb6ccdca83 to your computer and use it in GitHub Desktop.
Fluid html container with horizontal whitespace on mobile devices.
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
| <div class="fluid-container"> | |
| [ I'm a fluid container ] | |
| </div> | |
| <style> | |
| .fluid-container { | |
| background: lightblue; | |
| width: min(96%, 62.5rem); | |
| margin: 0 auto; | |
| } | |
| </style> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment