gpt4 book ai didi

html - 将网页居中

转载 作者:太空宇宙 更新时间:2023-11-03 18:40:34 26 4
gpt4 key购买 nike

我正在尝试将我的网页居中。还有一个最小 1000px 并且它可以放大。目前我的页面在缩放时偏离中心 30%-center-70%。我对为什么会这样感到困惑。如果有人能解释为什么会这样,那就太好了。

enter image description here

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Title</title>
<style type="text/css">


#page {
position:relative;
display:block;
width:75%;
margin:auto;
min-width:1000px;
z-index:0;
}
#pageImg {
position:absolute;
width:75%;
margin:auto;
min-width:1000px;
z-index:1;
}
#navBarImg {
position:absolute;
width:75%;
margin:auto;
min-width:1000px;
z-index:2;
}

</style>
</head>
<body>
<div id="page">
<img id="pageImg" src="../Navigation/backgroundImg.png" />
<div id="navBar">
<img id="navBarImg" src="../Navigation/navBarBGImg.png" />
</div>
</div>
</body>
</html>

最佳答案

也许尝试 50% 的页面宽度...我认为您从 75% 的 75% 得到了结果...

示例 - http://jsfiddle.net/rob_towner/q8vKK/

#page {
position:relative;
display:block;
width:50%;
margin:auto;
min-width:1000px;
z-index:0;
}

关于html - 将网页居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17712848/

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