【发布时间】:2012-02-21 14:42:57
【问题描述】:
我正在以这种方式使用 qtip:
$('#div').qtip({content:"CONTENT",show: {event: false,ready: true},hide:false,position: {at: 'bottom left'}});
我的问题是CONTENT 显示的文字太多,它会覆盖页面的其他部分。我可以调整工具提示中的文本大小吗?请帮帮我!
【问题讨论】:
我正在以这种方式使用 qtip:
$('#div').qtip({content:"CONTENT",show: {event: false,ready: true},hide:false,position: {at: 'bottom left'}});
我的问题是CONTENT 显示的文字太多,它会覆盖页面的其他部分。我可以调整工具提示中的文本大小吗?请帮帮我!
【问题讨论】:
简单..你可以在 css 中使用它:
.ui-tooltip-content {
font-size:12px;
}
【讨论】: