Skip to content

Instantly share code, notes, and snippets.

@Yago
Created July 9, 2014 07:39
Show Gist options
  • Save Yago/3e3c772b373b208f8a82 to your computer and use it in GitHub Desktop.
Save Yago/3e3c772b373b208f8a82 to your computer and use it in GitHub Desktop.
Sass - Image center
.logo-wrapper {
float:none !important;
position: relative;
display: inline-block;
max-width: 100%;
height: 200px !important;
margin: 0 auto !important;
padding: 0px !important;
text-align: center;
&:before {
content: "";
vertical-align: middle;
display: inline-block;
height: 100%;
}
img {
max-width: 80%;
max-height: 100%;
height: auto;
display: inline-block;
vertical-align: middle;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment