Created
March 1, 2018 05:14
-
-
Save j-/93d2ed72ad61cf92b745d13927c04592 to your computer and use it in GitHub Desktop.
Fixed ratio element
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="outer"> | |
<div class="middle"> | |
<div class="inner"> | |
Hello world | |
</div> | |
</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
.outer { | |
/* Set this to whatever width you would like */ | |
width: 85.60mm; | |
} | |
.middle { | |
/* Set this to the ratio of height:width */ | |
padding-top: 63.0607476635514%; /* = 53.98mm / 85.60mm */ | |
position: relative; | |
} | |
.inner { | |
border: 1px solid gold; | |
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