gpt4 book ai didi

html - 移动 Chrome 浏览器显示与其他移动浏览器不同

转载 作者:太空宇宙 更新时间:2023-11-04 01:28:47 24 4
gpt4 key购买 nike

我正在尝试使用这张机器人先生的封面图片构建一个响应式网页。它确实有效,只有移动版 Chrome 浏览器会出问题。

正如您在下面的第二张图片中看到的,封面图片略微悬在屏幕的右端,我不知道为什么。有人知道为什么 Chrome 在这种情况下会惹麻烦吗?

这是我使用的代码:

HTML

    <div class="wrapper">
<img src="..." class="cover">
</div>

CSS

  .wrapper img.cover {
max-height: 100%;
max-width: 100%;
text-align: center;
}

它在 Safari、Firefox 和 Opera 上的外观:

How it looks on Safari, Firefox and Opera

它在 Chrome 上的外观:

How it looks on Chrome

谢谢!

最佳答案

试试这个

.wrapper{
width: 100%;
padding: 15px;
box-sizing: border-box;
}
.wrapper img{
max-width: 100%;
height: auto;
}

关于html - 移动 Chrome 浏览器显示与其他移动浏览器不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47471233/

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