Advertisement
Javi

CSS: Alineación vertical en tres líneas

Jan 13th, 2014
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1. @mixin vertical-align {
  2.   position: relative;
  3.   top: 50%;
  4.   -webkit-transform: translateY(-50%);
  5.   -moz-transform: translateY(-50%);
  6.   -o-transform: translateY(-50%);
  7.   -ms-transform: translateY(-50%);
  8.   transform: translateY(-50%);
  9. }
  10.  
  11. .element p {
  12.   @include vertical-align;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement