Advertisement
apl-mhd

div inside div centering

Aug 28th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.27 KB | None | 0 0
  1. .centered {
  2.   position: fixed;
  3.   top: 50%;
  4.   left: 50%;
  5.   /* bring your own prefixes */
  6.   transform: translate(-50%, -50%);
  7. }
  8.  
  9.  
  10. .container .box  .desc .content{
  11.  
  12.     position: absolute;
  13.     top: 50%;
  14.  
  15.   /* bring your own prefixes */
  16.   transform: translatey(-50%);
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement