引导程序弹出框中的图像不包含在框架中

时间:2016-11-13 12:41:26

标签: twitter-bootstrap popover

我使用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>

但是大图像不包含在框架中,如下图所示。

我该如何解决问题?

enter image description here

1 个答案:

答案 0 :(得分:0)

好的,我发现我需要更改最大宽度。

.popover{
    max-width: 500px;
}