Skip to content

Instantly share code, notes, and snippets.

@erming
Last active October 25, 2016 20:25
Show Gist options
  • Save erming/437c45f72f7cf8195d22 to your computer and use it in GitHub Desktop.
Save erming/437c45f72f7cf8195d22 to your computer and use it in GitHub Desktop.
Responsive square <div> with CSS only
<div class="square">
<div class="square-content">
Hello world!
</div>
</div>
.square {
position: relative;
}
.square:before {
content: "";
display: block;
padding-top: 100%;
}
.square-content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment