我正在做一个简单的网站。 在这个网站上,我有几个不同层次的div(一个在另一个之前,依此类推)。 后面的两个div没有问题,但是当我调整浏览器的大小时,前面的div会移动,我不希望这样。 奇怪的是,后面的div是以相同的方式创建的。 所以基本上弄乱了我的页面是: #icone_esquerda 和 #icone_direita 。 以下是我的代码:
<style type="text/css">
#fundo{
background-image:url("tileable_wood_texture_copy.png");
background-repeat:repeat;
position:fixed;
width:100%;
height:100%;
top:0;
left:0;
}
#frente{
background-image:url("luinguica.png");
background-repeat:no-repeat;
background-position:top center;
position:fixed;
width:inherit;
height:inherit;
left: 0;
top: 0;
z-index:50;
}
#icone_esquerda{
background-image: url("botao_facebook.png");
background-position: bottom center;
background-repeat: no-repeat;
height: 50px;
left: 45%;
margin: -25px 0 0 -25px;
position: fixed;
top: 45%;
width: 50px;
z-index: 60;
}
#icone_direita{
background-image: url("botao_mail.png");
background-position: bottom center;
background-repeat: no-repeat;
position: fixed;
width: 50px;
height: 50px;
left: 53%;
top: 45%;
margin: -25px 0 0 -25px;
z-index: 60;
}
</style>
</head>
<body>
<div id="fundo">
<div id="frente">
<a href="http://www.facebook.com/confrariadaempada">
<div id="icone_esquerda">
</div>
</a>
<a href="mailto:info@confrariadaempada.pt">
<div id="icone_direita">
</div>
</a>
</div>
</div>
</body>
当我调整浏览器的大小时,使用id icone_esquerda和icone_direita移动! 有人可以帮帮我吗?
提前致谢。
答案 0 :(得分:0)
Fixed
应该根据屏幕将其保留在指定区域 - 它的位置,大小等等。
Absolute
都会保持不变。
实际上,它们都应该很少(如果有的话)使用。最好学习根据需要使用Relative
定位元素和浮动(当然可以正确清除)。