gpt4 book ai didi

html - 居中可缩放图像(用于极其简单的网络)

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

我正在构建一个即将推出的网站,我想让它变得简单 - 在页面的死 Angular 放置一个图像,可缩放到不同的浏览器大小。我试图用谷歌搜索它,但没有一个解决方案能给我想要的结果。使用 max-width 会产生奇怪的结果,因为我在像素中使用负边距,所以当图像缩放时,这些边距不适用。

我想要居中的图像是 700x700 像素。

欢迎任何帮助:)

这是我当前的页面:http://jsfiddle.net/EYL5U/

html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: table
}

img {
position: absolute;
top: 50%;
left: 50%;
width: 700px;
height: 70px;
margin-top: -350px;
margin-left: -350px;
max-width: 100%;
}

当我调整浏览器大小时它不会缩放...

最佳答案

img {
position:absolute;
margin:auto;
top:0;bottom:0;left:0;right:0;
}

jsFiddle example

关于html - 居中可缩放图像(用于极其简单的网络),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19862025/

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