gpt4 book ai didi

html - 响应式背景在人像手机中被压扁

转载 作者:太空宇宙 更新时间:2023-11-03 21:59:55 27 4
gpt4 key购买 nike

我在使用响应式背景时遇到问题。 http://poppykeith.co.uk/index.html在计算机浏览器和移动浏览器上横向看起来正确,但是在移动设备(我使用的是 iOS)上纵向查看时,图像会被挤压以适合屏幕。

我如何才能让图像在纵向模式下只放大而不拉伸(stretch)?

谢谢

最佳答案

您编写的代码几乎可以工作,但是 min-width:1024pxwidth:100% 规则相互冲突并导致您看到的压缩效果.基本上,width 胜过 min-width

您要使用的真正技术是将该图像设置为 body 元素的背景,然后使用 background-size:cover 让浏览器适本地加载它

body { 
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

详情:http://css-tricks.com/perfect-full-page-background-image/

关于html - 响应式背景在人像手机中被压扁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11216621/

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