Skip to content

Instantly share code, notes, and snippets.

@LeezQ
Created May 4, 2015 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeezQ/191e259f8bd16453a05a to your computer and use it in GitHub Desktop.
Save LeezQ/191e259f8bd16453a05a to your computer and use it in GitHub Desktop.
图片垂直居中
.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