gpt4 book ai didi

css - Firefox CSS 图像

转载 作者:太空宇宙 更新时间:2023-11-04 00:10:25 27 4
gpt4 key购买 nike

我在使用 Firefox img 显示时遇到了问题。我的页面包含产品说明:

<article id="productPhoto">
<img id="prodImg" src="prova.jpg" />
</article>
<article id="productDesc">
<h3 id="prodName"></h3>
<h3 id="prodDesc"></h3>
</article>

CSS 是这样的:

#productPhoto{
float: left;
width: 50%;
height: 81%;
text-align: center;
}
#productPhoto img{
height: 80%;
}
#productDesc{
float: right;
width: 50%;
}
#prodName{
font-size: xx-large;
padding: 10px;
}

现在,img prova.jpg 非常大(宽度:2676px,高度:2068px)。在 Chrome 中,img 被调整为 #productPhoto 的 80%,但 firefox 没有,所以如果我在 firefox 中看到我的页面,img 是巨大的!!! :(一些建议?

谢谢,卢卡

最佳答案

尝试为您的图像设置最大值:

#productPhoto img{
max-height: 80%;
max-width: 100%;
}

关于css - Firefox CSS 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13269979/

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