Cut Diamond


SUBMITTED BY: Guest

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

FORMAT: CSS

SIZE: 523 Bytes

HITS: 1373

  1. #cut-diamond {
  2. border-style: solid;
  3. border-color: transparent transparent red transparent;
  4. border-width: 0 25px 25px 25px;
  5. height: 0;
  6. width: 50px;
  7. position: relative;
  8. margin: 20px 0 50px 0;
  9. }
  10. #cut-diamond:after {
  11. content: "";
  12. position: absolute;
  13. top: 25px;
  14. left: -25px;
  15. width: 0;
  16. height: 0;
  17. border-style: solid;
  18. border-color: red transparent transparent transparent;
  19. border-width: 70px 50px 0 50px;
  20. }

comments powered by Disqus