Skip to content

Instantly share code, notes, and snippets.

@Vterebenin
Created July 30, 2019 06:26
Show Gist options
  • Select an option

  • Save Vterebenin/a86fc3c523d783b93932d2e143df2273 to your computer and use it in GitHub Desktop.

Select an option

Save Vterebenin/a86fc3c523d783b93932d2e143df2273 to your computer and use it in GitHub Desktop.
Constant width to height ratio
.constant-width-to-height-ratio {
background: #333;
width: 50%;
}
.constant-width-to-height-ratio::before {
content: '';
padding-top: 100%;
float: left;
}
.constant-width-to-height-ratio::after {
content: '';
display: block;
clear: both;
}
<div class="constant-width-to-height-ratio"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment