Skip to content

Instantly share code, notes, and snippets.

@andipaetzold
Last active August 29, 2015 14:15
Show Gist options
  • Save andipaetzold/0fe447ba9ae0476edd65 to your computer and use it in GitHub Desktop.
Save andipaetzold/0fe447ba9ae0476edd65 to your computer and use it in GitHub Desktop.
Container with fixed aspect ratio. Size is based on the current viewport.
$ratio-height: 3;
$ratio-width: 4;
$margin: 0.1;
div#selector {
width: (1 - $margin) * 100vw;
height: (1 - $margin) * $ratio-height / $ratio-width * 100vw;
max-height: (1 - $margin) * 100vh;
max-width: (1 - $margin) * $ratio-width / $ratio-height * 100vh;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment