Created
May 4, 2015 14:47
-
-
Save LeezQ/191e259f8bd16453a05a to your computer and use it in GitHub Desktop.
图片垂直居中
This file contains 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
.swipe-wrap > div a { | |
-webkit-transform-style: preserve-3d; | |
display: block; | |
} | |
.swipe-wrap a img { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
} | |
# see more: http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment