Advertisement
Guest User

Untitled

a guest
May 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <h1><span>TEXT</span></h1>
  2.  
  3. h1 {
  4. position: relative;
  5. overflow: hidden;
  6. text-align: center;
  7. }
  8. h1 span {
  9. display: inline-block;
  10. vertical-align: baseline;
  11. zoom: 1;
  12. *display: inline;
  13. *vertical-align: auto;
  14. position: relative;
  15. padding: 0 20px;
  16. }
  17. h1 span:before,
  18. h1 span:after {
  19. content: '';
  20. display: block;
  21. width: 1000px;
  22. position: absolute;
  23. bottom: 5px;
  24. border-top: 3px solid #23284c;
  25. }
  26. h1 span:before {
  27. right: 100%;
  28. }
  29. h1 span:after {
  30. left: 100%;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement