Guest User

Untitled

a guest
Jan 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Vertical:
  2.  
  3. div {
  4. display: -webkit-flex;
  5. display: flex;
  6. align-items: center;
  7. }
  8.  
  9. <div>
  10. Your text here.
  11. </div>
  12.  
  13. ---------
  14.  
  15. Horizontal:
  16.  
  17. div {
  18. display: -webkit-flex;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23.  
  24. <div>
  25. Your text here.
  26. </div>
Add Comment
Please, Sign In to add comment