FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

TheBestTutorials.css Tooltips


Tooltips display text (or other content) when you hover over an HTML element.


Inline Tooltip Text

Hover over the sentence below!

London 9 million is the capital city of England.

The TheBestTutorials-tooltip class defines the HTML element to hover over (tooltip container).

The TheBestTutorials-text class defines the tooltip text:

Example

<p class="subhodaya-tooltip">London
<span class="subhodaya-text">9 million</span>
is the capital city of England</p>
Try It Yourself »

Inline Tooltip Tag

Hover over the sentence below!

London 9 million is the capital city of England.

Example

<p class="subhodaya-tooltip">London
<span class="subhodaya-text subhodaya-tag">9 million</span>
is the capital city of England</p>
Try It Yourself »

Image Tooltip

Hover over this picture to see the effect:

Car

A car is a wheeled, self-powered motor vehicle used for transportation. Most definitions of the term specify that cars typically have four wheels.(Wikipedia)

The TheBestTutorials-tooltip class defines the HTML element to hover over (tooltip container).

The TheBestTutorials-text class defines the tooltip text:

Example (text before the picture)

<div class="subhodaya-tooltip">
  <p class="subhodaya-text">A car is a...</p>
  <img src="img_car.jpg" alt="Car">
</div>
Try It Yourself »

Example (text after the picture)

<div class="subhodaya-tooltip">
  <img src="img_car.jpg" alt="Car">
  <p class="subhodaya-text">A car is a...</p>
</div>
Try It Yourself »

Absolute Tooltip

If you want the tooltip to appear in an absolute position, position the tooltip text (TheBestTutorials-text) with CSS:

London 9 million is the capital city of England.

Example

<p class="subhodaya-tooltip">London is the capital city of England.
<span style="position:absolute;left:0;bottom:18px"
class="subhodaya-text subhodaya-tag">9 million</span></p>
Try It Yourself »

Colored Tooltip

If you want a colored tooltip, use the TheBestTutorials-color classes:

Example

<span class="subhodaya-text subhodaya-tag subhodaya-red">9 million</span>
Try It Yourself »

Rounded Tooltip

If you want a rounded tooltip, use the TheBestTutorials-round classes:

Example

<span class="subhodaya-text subhodaya-tag TheBestTutorials-round">9 million</span>
Try It Yourself »

Small Tooltip

If you want a small tooltip, use the TheBestTutorials-small class:

Example

<span class="subhodaya-text subhodaya-tag subhodaya-small">9 million</span>
Try It Yourself »

Tiny Tooltip

If you want a tiny tooltip, use the TheBestTutorials-tiny class:

Example

<span class="subhodaya-text subhodaya-tag TheBestTutorials-tiny">9 million</span>
Try It Yourself »

Large Tooltip

If you want a large tooltip, use the TheBestTutorials-large classes:

Example

<span class="subhodaya-text subhodaya-tag subhodaya-xlarge">9 million</span>
Try It Yourself »

Animated Tooltip

If you want to fade in the tooltip, use the TheBestTutorials-animate-opacity class:

Example

<span class="subhodaya-text subhodaya-tag TheBestTutorials-animate-opacity">9 million</span>
Try It Yourself »