html - Make tooltip position fixed -


i have been able create tooltips app. tooltips content comes db , dynamic. have 2 lines of text , have 5 lines of text. struggling keep position fixed regardless of content is. there can try fix this?

here fiddle demonstrating facing.

.tooltip:hover .dumclass {     display: inline;     color: #ffffff;     border: 1px solid #dca;     background: #444;     -moz-border-radius: 11px;     -webkit-border-radius: 11px;     border-radius: 11px; }  enter code here 

css

.tooltip{position:relative;} .tooltip .dumclass {     z-index: 10;     display: none;     padding: 14px 20px;     bottom:20px;     left:0;     width: 240px;     line-height: 16px;     position: absolute; } 

demo


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -