Jump to content

CSS Tooltip


HighCaliber

Recommended Posts

Does anyone know how to make a browser friendly css tooltip? I have the following but it is not working in IE.

	a.tooltip		{		position:relative;		z-index:24;		}	a.tooltip:hover		{		z-index:25;		}	a.tooltip span		{		display: none;		}	a.tooltip:hover span		{		background: transparent url('Themes/Default/Images/tooltip.gif') left center no-repeat;		border: 0px;		bottom: -5px;		color: black;		display: block;		height: 54px;		padding: 3px 3px 3px 15px;		position: absolute;		right: -222px;		text-align: center;		width: 202px;		}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...