我正在使用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'
}
}
});
感谢
答案 0 :(得分:10)
我用CSS解决了:
.qtip-content {
font-size:12px;
}
答案 1 :(得分:0)
您需要添加“ px ”,并且可以将任何css property
添加到工具提示中,但必须将其添加到引号中。
所以试试这个(它对我有用)
'font-size' : '12px'
答案 2 :(得分:-2)
尝试删除font-size
周围的引号style: { name: 'light', border: {width: 0}, title: { font-size: 2 } }