CSS ToolTips How to make CSS tooltips
|
Web Development and Web Technology
|
|
Written by Nikolay Gul
|
How to make CSS ToolTips?
How to create multiple tooltips mouseover on the same page?
Tooltips might be the link to external websiteMouseover for TooltipYra Rabotaet Tooltip Text.
Tool tip might work just to provide more info on same page One more TooltipYra i Eche Odna Rabotaet
Last for TodayGlavnow vce chot ti xochesh cdelat tooltip tolgno bit inside spam tag kak v code
How to make simple CSS ToolTips?
This how css tooptip script : <a href="#" class="OverTolTip">Mouseover for Tooltip<span>
Vce chto inside span pokazivaetcia kak tooltips</span></a>
CSS tooltips look like this: Mouseover for TooltipVce chto inside span pokazivaetcia kak tooltips
To make tooltips script (CSS tooltips) work place below CSS code between head tag: <head> code below </head>
CSS for simple tooltips script:
<style type="text/css">
/* Two lines below setting ToolTips mouseover.
You can use only this line. remember add <a class="tooltip" and them url href="/http.www.anyurl.com" </a>
a.tooltip:hover span{display:inline; position:absolute; border:2px solid #cccccc; background:#efefef; color:#333399;}
a.tooltip span
{display:none; padding:2px 3px; margin-left:8px; width:150px;}
</style>
*/
CSS Tooltip code (CSS Tooltip script) will work if you add style anywhere insice body of the page ( <body> </body> )
Visit this page if you would like to know How to create css tooltips, flash tooltips, tooltips with Javascript?
|