Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   HTML / DHTML (http://siteownersforums.com/forumdisplay.php?f=7)
-   -   CSS Tooltips (http://siteownersforums.com/showthread.php?t=60792)

davikerkrish 10-31-2012 12:36 AM

CSS Tooltips
 
We can create a tool tip using CSS. When mouse over the link the tool tip content will display otherwise display none.


a:hover {
background:#ffffff; /*BG color is a must for IE6*/
text-decoration:none;
}

a.tooltip span {
display:none;
padding:2px 3px;
margin-left:8px;
width:130px;
}

a.tooltip:hover span{
display:inline;
position:absolute;
background:#ffffff;
border:1px solid #cccccc;
color:#6c6c6c;
}

Tooltip Extra info

chelsea77 11-11-2012 11:56 AM

nice css technique

abhirampathak3 12-05-2012 05:08 AM

I have a technique of tool tip. Code is bellow

a[data-tooltip]:link, a[data-tooltip]:visited {
position: relative;
text-decoration: none;
border-bottom: solid 1px;
}

a[data-tooltip]:before {
content: "";
position: absolute;
border-top: 20px solid #0090ff;
border-left: 30px solid transparent;
border-right: 30px solid transparent;
visibility: hidden;
top: -18px;
left: -26px;
}

deadmix 01-02-2013 08:07 PM

thank you for this quick code that can be helpful

rsewak 01-24-2013 01:50 AM

I read your CSS Tips - Thanks for share Good Knowledge

deadmix 01-29-2013 11:52 AM

thank you for this simple trick!

AscertaConsult 02-13-2013 03:09 AM

thank you!

Kamrul Manna 02-13-2013 08:12 PM

Thanks for this topic.

mikerock 02-20-2013 10:16 AM

that nice. could you share more tooltips if you have. I appreciate your work.

parab01a 02-25-2013 08:02 AM

Just what I was looking for, Thanks!

vivekaryan 04-19-2013 03:57 AM

thanks for sharing this info.....


All times are GMT -7. The time now is 01:12 PM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.