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

23 lines
349B

  1. .tooltip {
  2. position: relative;
  3. display: inline-block;
  4. }
  5. .tooltip .tooltiptext {
  6. visibility: hidden;
  7. width: 300px;
  8. padding: 10px;
  9. background-color: #fff;
  10. color: black;
  11. border-radius: 6px;
  12. position: absolute;
  13. z-index: 1;
  14. bottom: 100%;
  15. left: 50%;
  16. margin-left: -60px;
  17. }
  18. .tooltip:hover .tooltiptext {
  19. visibility: visible;
  20. }