Talk Bubble


SUBMITTED BY: Guest

DATE: March 12, 2013, 11:45 a.m.

FORMAT: CSS

SIZE: 479 Bytes

HITS: 1379

  1. #talkbubble {
  2. width: 120px;
  3. height: 80px;
  4. background: red;
  5. position: relative;
  6. -moz-border-radius: 10px;
  7. -webkit-border-radius: 10px;
  8. border-radius: 10px;
  9. }
  10. #talkbubble:before {
  11. content:"";
  12. position: absolute;
  13. right: 100%;
  14. top: 26px;
  15. width: 0;
  16. height: 0;
  17. border-top: 13px solid transparent;
  18. border-right: 26px solid red;
  19. border-bottom: 13px solid transparent;
  20. }

comments powered by Disqus