Created
July 30, 2019 06:26
-
-
Save Vterebenin/a86fc3c523d783b93932d2e143df2273 to your computer and use it in GitHub Desktop.
Constant width to height ratio
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
| .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; | |
| } |
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="constant-width-to-height-ratio"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment