Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

User:Felyza/Sandbox/TooltipTest: Difference between revisions

From EVE University Wiki
Felyza (talk | contribs)
mNo edit summary
Felyza (talk | contribs)
mNo edit summary
Line 20: Line 20:
   position: absolute;
   position: absolute;
   z-index: 1;
   z-index: 1;
}
.tooltip .tooltiptext {
  width: 120px;
  bottom: 100%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
}