gpt4 book ai didi

css - bootstrap-3 - img 响应不工作

转载 作者:技术小花猫 更新时间:2023-10-29 11:09:24 25 4
gpt4 key购买 nike

为了好玩,我建立了一个小网站,熟悉 bootstrap。

我遇到的问题是 Logo 图像没有响应,无论我尝试什么。

代码看起来很简单我确定我只是遗漏了一个小细节:

<div id="masthead">
<div class="container">
<div class="row">
<div class="col-md-7 header-logo">
<div class="header-logo" style="color: white;">
<img src="/img/gros_buck_175.png" class="img-responsive" align="left" style="padding-right: 1.5em;padding-top: 0px; max-width: 184px;">
<br>
TEL: 450 955-3422 <br>
182 CHEMIN D'ADAMSVILLE <br>
J2L 2Y6, BROMONT<br>
laboucheriedugrosbuck@gmail.com
<br clear="all">
</div>
</div>
<div class="col-md-5">
<div class="well well-lg">
<div class="row">
<div class="col-sm-12">
<img src="/img/sceau_140.png" class="img-responsive" align="left" style="padding-right: 1.2em;">
<h3 style="margin-top:0px; margin-bottom: 1em;">PROMO</h3>
FAITES VOTRE PLAN DE VIANDE:<br>
ACHETEZ POUR PLUS DE 100$ DE PRODUITS
À L'UNITÉ ET RECEVEZ 10% EN SAUCISSES.
</div>
</div>
</div>
</div>
</div>
</div><!--/container-->
</div><!--/masthead-->

(这是一个重现问题的 fiddle )- https://jsfiddle.net/JoshC/2XgDW/2/

最佳答案

首先从图片标签中移除max-width: 184px属性

<img src="/img/gros_buck_175.png"
class="img-responsive"
align="left"
style="padding-right: 1.5em;padding-top: 0px;">

尽管最好避免使用内联样式:

<img src="/img/gros_buck_175.png" class="img-responsive" id="myLogo" align="left">
#myLogo {
padding-right: 1.5em;
padding-top: 0px;
}

如果其中一个祖先元素的样式有可能受到干扰,您可以像这样重置它:

#myLogo {
all: initial!important;
width: 100%!important;
height: auto!important;
}

如果问题仍然存在,下一步就是使用 JavaScript

Object.assign(document.getElementById('myLogo').style, {
all: 'initial',
width: '100%',
height: 'auto'
});

此代码应包含在文档中的元素之后,否则它将无法找到指定的元素,因为它尚不存在。


既然您已经将示例添加到您的问题中,您可以通过替换以下 CSS 使图像呈现其自然大小:

img {
display:table-cell;
width:100%;
height:auto;
}

使用这个 CSS:

img {
display:inline-block;
}

( Demo )


我认为您对 display: table 的使用干扰了您的设计。下面是两种无需修改即可实现相同布局的方法。

CSS3 方法

所有相关的现代浏览器都支持此方法,因此如果您不关心与旧浏览器的向后兼容性,则可以使用此方法。

( Demo )

<div class="inline-wrap">
<img src="http://placehold.it/150x150" />
<div class="text-wrap">Lorem Ipsum is simply dummy text Lorem Ipsum is simply dummy text Lorem Ipsum is simply dummy text</div>
</div>
*,*:before,*:after {
box-sizing: border-box;
}
.inline-wrap {
white-space: nowrap;
font-size: 0;
height: 150px;
}
.inline-wrap img {
width: 150px;
}
.inline-wrap .text-wrap {
white-space: initial;
font-size: initial;
display: inline-block;
height: 100%;
width: 65%; /* Fallback */
width: calc(100% - 150px);
}

表法

为了向后兼容,您可以使用此方法。

( Demo )

<table>
<tr>
<td class="img-wrap">
<img src="http://placehold.it/150x150" />
</td>
<td class="text-wrap">Lorem Ipsum is simply dummy text Lorem Ipsum is simply dummy text Lorem Ipsum is simply dummy text</td>
</tr>
</table>
*, *:before, *:after {
box-sizing: border-box;
}
table, tr, td {
border: 0;
padding: 0;
margin: 0;
border-collapse: collapse;
}
table {
width:100%;
}
table .img-wrap {
font-size: 0;
}
table .text-wrap {
width: 100%;
height: 100%;
}

关于css - bootstrap-3 - img 响应不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29957365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com