문제

DEMO LINK

I am trying to include a tooltip inside the table but when mouse hovers it streches the tables and tooltip text isn't showing up correctly as well on the website.

How can I fix this?

CSS:

.infotext {
    background: url(http://s17.postimg.org/k71a0r6m3/info_Icon.png) 0 0px no-repeat;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: text-bottom;
}
도움이 되었습니까?

해결책

If you add the following CSS, it should work

td .tooltip {
    position:absolute
}

http://jsfiddle.net/z33j5/2/

Without this, the tooltips had a position:relative which meant they were rendered in the table cell

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top