Diamond Narrow


SUBMITTED BY: Guest

DATE: March 11, 2013, 10:06 a.m.

FORMAT: CSS

SIZE: 362 Bytes

HITS: 1844

  1. #diamond-narrow {
  2. width: 0;
  3. height: 0;
  4. border: 50px solid transparent;
  5. border-bottom: 70px solid red;
  6. position: relative;
  7. top: -50px;
  8. }
  9. #diamond-narrow:after {
  10. content: '';
  11. position: absolute;
  12. left: -50px; top: 70px;
  13. width: 0;
  14. height: 0;
  15. border: 50px solid transparent;
  16. border-top: 70px solid red;
  17. }

comments powered by Disqus