Guest User

Untitled

a guest
Feb 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. .child {
  2. position: absolute;
  3. top: 50%; /* position the top edge of the element at the middle of the parent */
  4. left: 50%; /* position the left edge of the element at the middle of the parent */
  5.  
  6. transform: translate(-50%, -50%); /* This is a shorthand of
  7. translateX(-50%) and translateY(-50%) */
  8. }
Add Comment
Please, Sign In to add comment