Hover over the sentences below:
W3.CSS provides the following tooltip classes:
Class | Defines |
---|---|
w3-tooltip | The tooltip element |
w3-text | The tooltip text |
Tooltips display text (or other content) when you hover over an HTML element.
The w3-tooltip class defines the element to hover over (the tooltip container).
The w3-text class defines the tooltip text.
Hover over the sentence below:
London (9 million inhabitants) is the capital of England.
<p class="w3-tooltip">London
<span class="w3-text">(<em>9 million inhabitants</em>)</span>
is the capital of England.</p>
Try It Yourself »
Hover over the sentence below:
London 9 million inhabitants is the capital of England.
<p class="w3-tooltip">London
<span class="w3-text w3-tag"><b>9 million inhabitants</b></span>
is the capital of England.</p>
Try It Yourself »
Hover over this picture to see the effect:
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)
<div class="w3-tooltip">
<p class="w3-text">A car is a...</p>
<img src="img_car.jpg" alt="Car">
</div>
Try It Yourself »
<div class="w3-tooltip">
<img src="img_car.jpg" alt="Car">
<p class="w3-text">A car is a...</p>
</div>
Try It Yourself »
If you want the tooltip to appear in an absolute position, position the tooltip text with CSS:
<p class="w3-tooltip">London
<span style="position:absolute;left:0;bottom:18px"
class="w3-text w3-tag">9 million inhabitants</span>
is the capital of England.</p>
Try It Yourself »
If you want a colored tooltip, use the w3-color classes:
If you want a rounded tooltip, use the w3-round classes:
If you want a small tooltip, use the w3-small class:
If you want a tiny tooltip, use the w3-tiny class:
If you want a large tooltip, use the w3-large classes:
If you want to fade in the tooltip, use the w3-animate-opacity class:
<span class="w3-text w3-tag w3-animate-opacity">9 million inhabitants</span>
Try It Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!