You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

tooltip.css 472 B

2 years ago
12345678910111213141516171819202122232425
  1. .tooltip{
  2. position: absolute;
  3. max-width: 300px;
  4. top: 3px;
  5. left: 105%;
  6. padding: 8px 10px;
  7. border-radius: 5px;
  8. color: #fff;
  9. background: #000000;
  10. box-shadow: 0 2px 2px 0 #7F7C7C;
  11. white-space: nowrap;
  12. }
  13. .tooltip:after{
  14. content: '';
  15. position: absolute;
  16. top: 35%;
  17. right:100%;
  18. margin-left: 10px;
  19. width: 0;
  20. height: 0;
  21. border: 5px solid transparent;
  22. border-right: 7px #000;
  23. border-left-width: 7px;
  24. }