Created
March 24, 2017 11:58
-
-
Save mlbd/a5d6e8b08a394ba80ecf63154c8abbe1 to your computer and use it in GitHub Desktop.
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
// jQuery | |
$(".image-container > img").each(function(i, img) { | |
$(img).css({ | |
position: "relative", | |
left: ($(img).parent().width()/2) - ($(img).width()/2), | |
top: ($(img).parent().height()/2) - ($(img).height()/2), | |
}); | |
}); | |
<!-- html markup --> | |
<div class="image-container"> | |
<img src="http://www.google.com/images/logo.gif" height="100" /> | |
</div> | |
/* Stylesheet */ | |
.image-container { | |
width: 470px; | |
border: solid 1px red; | |
margin:100px; | |
height: 250px; | |
} | |
.image-container img { | |
border: solid 1px green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment