暂时覆盖页边距

时间:2011-10-22 16:17:19

标签: javascript css

如果我将页面边距设置为5或10像素,那么无论如何都要覆盖我希望覆盖整个页面宽度的内容?

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

...样品

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

1 个答案:

答案 0 :(得分:3)

在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