Skip to content

Instantly share code, notes, and snippets.

@ozrabal
Created September 12, 2017 10:45
Show Gist options
  • Save ozrabal/2f4c8e713966d4eea886be3d01303f20 to your computer and use it in GitHub Desktop.
Save ozrabal/2f4c8e713966d4eea886be3d01303f20 to your computer and use it in GitHub Desktop.
Responsive Square
<div class="square">
<div class="content">
Hello!
</div>
</div>
.square {
position: relative;
width: 50%;
}
.square:after {
content: "";
display: block;
padding-bottom: 100%;
}
.content {
position: absolute;
width: 100%;
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment