sparkline tooltip issues when using bootstrap

Globally setting box-sizing to border-box causes tooltip to be displayed incorrectly. This can be fixed by the following css after bootstrap. This may become an issue as box-sizing is more frequently used.

.jqstooltip{
    box-sizing: content-box;
}

 

image

猜你喜欢

转载自sunxboy.iteye.com/blog/2111092