CSS: Tooltip

A tooltip in CSS is a small pop-up box or message that appears when you hover over or interact with an element, providing additional information or context about that element. Tooltips are commonly used in web design to enhance user experience by providing quick and contextual information without cluttering the interface.

Creating a Basic Tooltip

To create a tooltip in CSS, you typically use the ::before or ::after pseudo-elements to generate the tooltip content and style it accordingly. Here's a basic example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* Underline effect */
    cursor: help; /* Cursor style */
}

/* Tooltip content */
.tooltip::before {
    content: attr(data-tooltip); /* Display content from 'data-tooltip' attribute */
    position: absolute;
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    bottom: 125%; /* Position above the element */
    left: 50%;
    transform: translateX(-50%);
}

/* Tooltip visibility on hover */
.tooltip:hover::before {
    visibility: visible;
    opacity: 1;
}
</style>
</head>
<body>

<!-- Element with tooltip -->
<div class="tooltip" data-tooltip="This is a tooltip">Hover over me</div>

</body>
</html>

In this example:

  • The .tooltip class is applied to the element that should have the tooltip.
  • The data-tooltip attribute is used to store the tooltip text.
  • The ::before pseudo-element is styled to create the tooltip appearance.
  • CSS transitions are used for a smooth visibility effect when hovering.

Customizing Tooltip Styles

You can customize the appearance of tooltips by adjusting the CSS properties within the .tooltip::before selector. Common customizations include changing the background color, text color, padding, border radius, font size, and positioning.

Positioning Tooltips

The position of the tooltip can be adjusted using properties like top, bottom, left, right, and transform. In the example, the tooltip is positioned above the element (bottom: 125%;) and centered horizontally (left: 50%; transform: translateX(-50%);).

Accessibility Considerations

When using tooltips, it's important to consider accessibility. Ensure that tooltips are keyboard accessible and that users with screen readers or assistive technologies can access the tooltip information.

Using Libraries or Frameworks

While creating tooltips from scratch in CSS is a common approach, you can also use libraries and frameworks like Bootstrap, Materialize CSS, or jQuery UI, which provide pre-designed tooltip components with additional features and customization options. These libraries often handle accessibility and responsive design considerations as well.

Conclusion

CSS tooltips are a useful UI element for providing contextual information to users. By leveraging CSS techniques like pseudo-elements and transitions, you can create visually appealing tooltips that enhance the overall user experience of your web applications.