Guest User

Untitled

a guest
Sep 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2.  
  3. section {
  4. width: 50%;
  5. margin: 0 auto;
  6. }
  7. h2 {
  8. position: relative;
  9. background: black;
  10. }
  11. h2:before, h2:after {
  12. content: "";
  13. position: absolute;
  14. background: black; /* Match the background */
  15. top: 0;
  16. bottom: 0;
  17. width: 9999px; /* some huge width */
  18. }
  19. h2:before {
  20. right: 100%;
  21. }
  22. h2:after {
  23. left: 100%;
  24. }
Add Comment
Please, Sign In to add comment