Make Tooltip Position Fixed
I have been able to create the tooltips for my app. The tooltips content will comes from a DB and it is dynamic. Sometimes it will have two lines of text and sometimes it will have
Solution 1:
CSS
.tooltip{position:relative;}
.tooltip.dumClass {
z-index: 10;
display: none;
padding: 14px20px;
bottom:20px;
left:0;
width: 240px;
line-height: 16px;
position: absolute;
}
Post a Comment for "Make Tooltip Position Fixed"