Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mharleydev/94bce03c704c611a64ab64fb6ccdca83 to your computer and use it in GitHub Desktop.

Select an option

Save mharleydev/94bce03c704c611a64ab64fb6ccdca83 to your computer and use it in GitHub Desktop.
Fluid html container with horizontal whitespace on mobile devices.
<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