Last active
December 14, 2017 23:22
-
-
Save tomfordweb/74b7ade11acefc7f4cb08611f5812a07 to your computer and use it in GitHub Desktop.
Fix aspect ratio of images by zooming. This will "crop" your image.
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="img" style="background-image:url('http://i.imgur.com/tI5jq2c.jpg');"></div> | |
<div class="img" style="background-image:url('http://i.imgur.com/37w80TG.jpg');"></div> | |
<div class="img" style="background-image:url('http://i.imgur.com/B1MCOtx.jpg');"></div> | |
<style> | |
.img { | |
position: relative; | |
float: left; | |
width: 100px; | |
height: 100px; | |
background-position: 50% 50%; | |
background-repeat: no-repeat; | |
background-size: cover; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment