Created
September 12, 2017 10:45
-
-
Save ozrabal/2f4c8e713966d4eea886be3d01303f20 to your computer and use it in GitHub Desktop.
Responsive Square
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="square"> | |
<div class="content"> | |
Hello! | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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