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.
|
- .tooltip {
- position: relative;
- display: inline-block;
- }
-
- .tooltip .tooltiptext {
- visibility: hidden;
- width: 300px;
- padding: 10px;
- background-color: #fff;
- color: black;
- border-radius: 6px;
- position: absolute;
- z-index: 1;
- bottom: 100%;
- left: 50%;
- margin-left: -60px;
- }
-
- .tooltip:hover .tooltiptext {
- visibility: visible;
- }
|