我使用bootstrap popover。
<script>
$(document).ready(function(){
$('a[rel=popover]').popover({
html: true,
trigger: 'hover',
placement: 'right',
content: function(){return '<img src="'+$(this).data('img') + '" />';}
});
});
</script>
但是大图像不包含在框架中,如下图所示。
我该如何解决问题?
答案 0 :(得分:0)
好的,我发现我需要更改最大宽度。
.popover{
max-width: 500px;
}