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;
}

 

 

你可能感兴趣的:(bootstrap)