Created
December 2, 2014 17:45
-
-
Save selahssea-zz/57f0606ca5144f2a6d08 to your computer and use it in GitHub Desktop.
Square div pure CSS
This file contains 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
.wrapper{ | |
position: relative; | |
width: 50%; | |
overflow: hidden; | |
background: #4679BD; | |
} | |
.wrapper:before{ | |
content: ""; | |
display: block; | |
padding-top: 100%; | |
} | |
.inner{ | |
position: absolute; | |
top: 0; | |
left: 0; | |
bottom: 0; | |
right: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment