Guest User

Untitled

a guest
Oct 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. /**
  2. * Centering block elements (webkit/moz only)
  3. */
  4.  
  5. div {
  6. text-align: center;
  7. }
  8.  
  9. div p + p {
  10. width: 22em;
  11. background: gold;
  12. }
  13.  
  14. div + div {
  15. text-align: -webkit-center;
  16. text-align: -moz-center;
  17. }
Add Comment
Please, Sign In to add comment