当我为我的 qtip 工具提示指定圆角时,只有右手边是圆角的,而左手边在圆角应该在的角落切出凹口。
这至少出现在 Firefox 和 IE 上。
这是我正在使用的代码
$('#test').qtip({
content: 'test',
show: 'click',
hide: 'unfocus',
style: {
width: 200,
color: 'black',
textAlign: 'center',
border: {
width: 15,
radius: 8,
color: '#6699CC'
}
}
});