Guest User

Untitled

a guest
Jan 21st, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. "Break out" of a parent's containing width to take the full screen of a page w/this nice utility class:
  2.  
  3. ```
  4. .full-width {
  5. width: 100vw;
  6. position: relative;
  7. left: 50%;
  8. right: 50%;
  9. margin-left: -50vw;
  10. margin-right: -50vw;
  11. }
  12. ```
Add Comment
Please, Sign In to add comment