我正在使用 qTip jquery-plugin 作为我的工具提示。

我无法更改工具提示的字体大小。这是代码.. 任何数字 2..4..8 都会产生相同的结果。

$('.option img[title]').qtip({
    style: { name: 'light', border: {width: 0}, title: { 'font-size': 2 } },
        position: {
            corner: {
                target: 'topMiddle',
                tooltip: 'bottomMiddle'
                }
        }
    });

谢谢

最佳答案

我用 CSS 解决了:

.qtip-content {
    font-size:12px;
}

关于jquery-plugins - jQuery, qTip : tooltips font-size: always the same,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2729410/

10-12 06:44