简体   繁体   中英

how to modify tooltip content font size?

I feel the font size of the content of tooltip is small. For example, the code is as below:

<span name="explanation" data-toggle="tooltip" title="hello world!"></span>

So how to modify the font size of the showed 'hello world!' when mouse hovering the span element?

First, start with the following code into the HTML head section: Second, embed a tooltip somewhere on your page using respectivly the following code

  <style type="text/css"> a.tooltip { position: relative; text-decoration: none; color: blue; } a.tooltip span { display: none; } a.tooltip:hover span { position: absolute; top: 40px; font-size: 40px; left: 0px; display: block; width: 250px; color: black; background-color: #FFFF40; border: 1px solid black; padding: 5px; } </style> 
  <a class="tooltip" href="#">this text<span>This help text is shown in the tooltip. It spans multiple lines and works in all browsers.</span></a> 

jQuery Tooltip is a good choice. the font size is larger and favorite for me.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM