Utilizor
Contact Us

CSS Tooltips

A tooltip is often used to specify extra information about something when the user moves the mouse pointer over an element.

CSS Tooltips

A tooltip is often used to specify extra information about something when the user moves the mouse pointer over an element.

Basic Tooltip

Hover over me Tooltip text

Example

.tooltip:hover .tooltiptext {
  visibility: visible;
}