Simplify your work by using our tools like, invoice generator, tool tips generator, css generator, html editor and more

Pure css tooltip generator / CSS3 Tooltip

♠ Posted by Merbin Joe in at 10:30

CSS3 Tooltip Generator online

     The following tooltip generator is 100% free to use, you can modify and generate your css and html code to use your website.
Tooltip generator
ToolTip Option
Box Shadow

Color
Horizontal Length : 0 PX
Vertical Length : 0 PX
Blur Ratio : 0 PX
Shadow Width : 0 PX
Text Shadow

Color :
Horizontal Length : 0 PX
Vertical Length : 0 PX
Blur Ratio : 0 PX
Tool Tip Pointer
Left -8 PX Right
Pointer Height : 8 PX
Pointer Width : 8 PX
Text Color :
Tool Tip Box
Tool Tip Postion
Height : 30 px
Width : 140 px
Tool Tip Box Postion
Left 50 % Right
Opacity : 0.8
Border
Border Radius : 6 PX
Border Width : 1 PX
Border Color :
HTML Code
<a class="tooltips_cls" href="#">Hover Here<span>Tooltip Merbin Joe</span></a>
Preview
Background color Text Color
a.tooltips_cls {
  position: relative;
  display: inline;
  color: #000000;
  text-decoration: none;
}

a.tooltips_cls span {
  position: absolute;
  width: 140px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
  border-radius: 6px;
  border: 1px solid 000000;
  text-shadow: 0px 0px 0px #000000;
  color: #FFFFFF
}
a.tooltips_cls span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #000000;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
a:hover.tooltips_cls span {
  visibility: visible;
  opacity: 0.8;
  bottom: 30px;
  left: 50%;
  margin-left: -76px;
  z-index: 999;
}

3 comments :

Thanks to Admin for Sharing such useful Information. I really like your Blog. Addition to your Story here I am Contributing 1 more Similar Story Cross Browser friendly pure CSS ToolTip.

Thanks to Admin for Sharing such useful Information. I really like your Blog. Addition to your Story here I am Contributing 1 more Similar Story Cross Browser friendly pure CSS ToolTip.

Post a Comment