Skip to content

Instantly share code, notes, and snippets.

@mlbd
Created March 24, 2017 11:58
Show Gist options
  • Save mlbd/a5d6e8b08a394ba80ecf63154c8abbe1 to your computer and use it in GitHub Desktop.
Save mlbd/a5d6e8b08a394ba80ecf63154c8abbe1 to your computer and use it in GitHub Desktop.
// 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