Created
March 25, 2015 21:53
-
-
Save anonymous/e55b1de337a2af6c688e to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/zukefivoye
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| .box{ | |
| position: relative; | |
| width: 100%; /* desired width */ | |
| } | |
| .box:before{ | |
| content: ""; | |
| display: block; | |
| padding-top: 100%; /* initial ratio of 1:1*/ | |
| } | |
| .content{ | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| bottom: 0; | |
| right: 0; | |
| background: url('http://placehold.it/500x410') center center no-repeat; | |
| background-size: cover; | |
| } | |
| /* Other ratios */ | |
| .ratio2_1:before{ | |
| padding-top: 50%; | |
| } | |
| .ratio1_2:before{ | |
| padding-top: 200%; | |
| } | |
| .ratio4_3:before{ | |
| padding-top: 75%; | |
| } | |
| .ratio16_9:before{ | |
| padding-top: 56.25%; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class='box ratio4_3'> | |
| <div class='content'></div> | |
| </div> | |
| <script id="jsbin-source-css" type="text/css">.box{ | |
| position: relative; | |
| width: 100%; /* desired width */ | |
| } | |
| .box:before{ | |
| content: ""; | |
| display: block; | |
| padding-top: 100%; /* initial ratio of 1:1*/ | |
| } | |
| .content{ | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| bottom: 0; | |
| right: 0; | |
| background: url('http://placehold.it/500x410') center center no-repeat; | |
| background-size: cover; | |
| } | |
| /* Other ratios */ | |
| .ratio2_1:before{ | |
| padding-top: 50%; | |
| } | |
| .ratio1_2:before{ | |
| padding-top: 200%; | |
| } | |
| .ratio4_3:before{ | |
| padding-top: 75%; | |
| } | |
| .ratio16_9:before{ | |
| padding-top: 56.25%; | |
| }</script> | |
| </body> | |
| </html> |
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
| .box{ | |
| position: relative; | |
| width: 100%; /* desired width */ | |
| } | |
| .box:before{ | |
| content: ""; | |
| display: block; | |
| padding-top: 100%; /* initial ratio of 1:1*/ | |
| } | |
| .content{ | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| bottom: 0; | |
| right: 0; | |
| background: url('http://placehold.it/500x410') center center no-repeat; | |
| background-size: cover; | |
| } | |
| /* Other ratios */ | |
| .ratio2_1:before{ | |
| padding-top: 50%; | |
| } | |
| .ratio1_2:before{ | |
| padding-top: 200%; | |
| } | |
| .ratio4_3:before{ | |
| padding-top: 75%; | |
| } | |
| .ratio16_9:before{ | |
| padding-top: 56.25%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment