Created
December 8, 2020 08:45
-
-
Save vanaf1979/caedbe162e39503c6ce3dd4f6833bf5b to your computer and use it in GitHub Desktop.
Fluid html container with horizontal whitespace on mobile devices.
This file contains 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
Thank you