Last active
September 15, 2020 09:40
-
-
Save shepelevstas/e241f43e6d1bcc0fc6508c5e2d73515a to your computer and use it in GitHub Desktop.
css block with fixed aspect 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
.fixed-ratio-block { | |
position: relative; | |
} | |
.fixed-ratio-block:before { | |
content: ''; | |
display: block; | |
padding-top: 80%; | |
} | |
.fixed-ratio-block__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