我想创建一个带有弹出窗口的图像,除了一件事,这个工作正常<img src="images/Doc_icon.jpg" class="btn btn-lg" rel="popover" data-content="output" data-placement="right" data-trigger="click">
。我正在使用的图标是响应性的,并且随页面缩小,我该如何阻止它?
答案 0 :(得分:2)
默认情况下,在Bootstrap中,所有img标签都有max-width:100%
当您扩展浏览器时,我也会尝试缩放
也许这段代码可以帮到你:
<img src="images/Doc_icon.jpg" class="btn btn-lg no-resize" rel="popover" data- content="output" data-placement="right" data-trigger="click">
.no-resize{
max-width: none;
}
答案 1 :(得分:0)
为您的图片设置固定的with
和height
。