gpt4 book ai didi

javascript - 暂时覆盖页边距

转载 作者:行者123 更新时间:2023-11-30 13:27:53 25 4
gpt4 key购买 nike

如果我将页边距设置为 5 或 10 像素,是否可以覆盖它以覆盖页面的整个宽度?

如果我将页边距设置为 10,并且我想覆盖页面宽度并将其设置为零,它仍然有 10... 它使用它作为最大边距的默认值

示例...

http://www.gootar.com/foobar.html

最佳答案

在 body 中使用 div 来创建边距 - 例如

<body>
<div id="main-content" style="margin: 10px">
...
</div>
<div id="div-all-over-the-page" style="position: absolute; width: 100%; height: 100%; top: 0px; left: 0px">
...
</div>
</body>

或者您可能想通过类设置边距并从 javascript 动态覆盖它

编辑:经典 javascript 即时替换

document.body.style.margin = '20px'; // for body
document.getElementById( 'foo-bar' ).style.margin = '20px'; // for specific element

关于javascript - 暂时覆盖页边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7860845/

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