Created
January 12, 2015 21:23
-
-
Save psaitu/f3bb1e8d8bdf25e7db16 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
| .image_wrapper { | |
| width: 119px; | |
| margin: 0 auto; | |
| overflow: hidden; | |
| height: 118px; | |
| display: inline-block; | |
| img { | |
| display: inline-block; | |
| vertical-align: middle; | |
| max-height: 100%; | |
| max-width: 100%; | |
| position: relative; | |
| left: 50%; | |
| @include translate(-50%, 0); | |
| z-index: 1; | |
| } | |
| } |
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="col-md-3"> | |
| <div class="image_wrapper"> | |
| <img src="imagepath.jpg" /> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment