Login   Register  
PHP Classes
elePHPant
Icontem

File: tool.css

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of soroush khosravi  >  Mini HTML Helper  >  tool.css  >  Download  
File: tool.css
Role: Auxiliary data
Content type: text/plain
Description: CSS File
Class: Mini HTML Helper
Display links with CSS based tooltips
Author: By
Last change:
Date: 2011-09-19 15:02
Size: 435 bytes
 

Contents

Class file image Download
a.tip {
	position: relative;
}

a.tip span {
	display: none;
	position: absolute;
	top: 20px;
	left: -10px;
	width: 125px;
	padding: 5px;
	z-index: 100;
	background: #000;
	color: #fff;
	-moz-border-radius: 5px; /* this works only in camino/firefox */
	-webkit-border-radius: 5px; /* this is just for Safari */
}

a:hover.tip {
	font-size: 99%; /* this is just for IE */
}

a:hover.tip span {
	display: block;
}