我想知道为什么我的div不固定。我在html上传递位置x和y但是取决于屏幕分辨率或者如果最大化html或减小他的宽度或高度。 我希望这些div总是处于准确的位置。
由于
答案 0 :(得分:0)
如果我正确理解了您的问题,那么您应该使用position: fixed
代替position: absolute
。
答案 1 :(得分:0)
当您将位置设置为绝对时,您将根据您指定的轴将该div放在绝对位置,无论您如何调整大小,它都会在那里。
我想你想根据表格将文字放在确切的位置,我是否正确?如果是这样,您可能希望将头寸置于“相对”位置。我已经修改了你的代码,以说明:
<table width="670" border="1" style="height:300px" align="center">
<tr>
<td>
<div class="Estilo1" style="position: relative; margin-top:50px; margin-left: 50px;">Texto sobrhhe </div>
<div class="Estilo1" style="position: absolute; top: 222px; left: 490px;">
Texto sobrhhe
</div>
</td>
</tr>
</table>
希望这就是你要找的东西=)