gpt4 book ai didi

css - 在我的网站上放大时,div 的移动

转载 作者:行者123 更新时间:2023-11-28 11:22:09 25 4
gpt4 key购买 nike

我是 HTML 和 CSS 的新手,希望有人能帮助我。我在使用此页面时遇到问题,其中内容未固定到位,当我放大和缩小容器时,容器会自由移动。知道如何解决这个问题吗?不确定我应该使用什么布局来防止这种情况发生。谢谢

        <body>
<img class="img" src="http://i824.photobucket.com/albums/zz162/nathanial292/banner_zps45abd080.png">
<div id="header">
<h3 id="header h3">
<a href="index.html">Home</a> Servers <a href="http://shoppingcart-28745.safestorefront.com/Merchant/?p1=201298">Shop</a> <a href="forum.html">Forum</a> About Us Contact
</h3>
</div>
<div class="left">
<h1>Server Updates</h1>
<h2><span>Hello readers</span></h2>
</div>
<div class="right">
<a id="nabblelink" href="http://hydronetworks-forums.58422.x6.nabble.com/">HydroNetworks Forums</a>
<script src="http://hydronetworks-forums.58422.x6.nabble.com/embed/f1"></script>
</div>
<div id="footer">All Rights Reserved 2013 HydroNetwork</div>
</body>
    #header{    
z-index: 1;
border-radius: 5px;
height: 50px;
width: 600px;
background-color: #585858;
border: solid #383838 6px;
position: absolute;
margin-top: 25px;
margin-left:640px;
min-width: 480px;
}
.right{
z-index: 1;
border-radius: 5px;
height: 600px;
border: solid #383838 6px;
width: 400px;
background-color: #585858;
position: relative;
margin-top: 120px;
margin-right: 50px;
font-family: Ebrima;
overflow:auto
}

.left{
z-index: 1;
border-radius: 5px;
height: 600px;
border: solid #383838 6px;
width: 600px;
background-color: #585858;
position: relative;
margin-top: 120px;
margin-left:150px;
margin-right: 750px;
text-align: center;
font-family: Ebrima;
}


最佳答案

当您放大时,内容会向右和底部移动,因为您使用了像素值。

无论如何你应该删除 <body background= "http://i824.photobucket.com/albums/zz162/nathanial292/background_zps477e8756.png">来自您的 HTML 代码。

并将其添加到您的 CSS 代码中:

body{
background: url(http://i824.photobucket.com/albums/zz162/nathanial292/background_zps477e8756.png);
background-position: top center;
}

如果您不希望 div 在缩放时“移动”,您应该使用像 width: 50% 这样的百分比。 .

关于css - 在我的网站上放大时,div 的移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21487040/

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