0

我想在页脚中并排放置一个 div,但是使用此代码会留下白色边框。

<!DOCTYPE html>
<html lang="en">
    <head>
        <style type="text/css">
            #bottomnav {
                background-color: #333;
                opacity: 1;
                height: 100px;
                left: 0;
                right: 0;
                bottom: 0;
                overflow: visible;
            }
        </style>
    </head>
<body>
    <footer>
        <div id="bottomnav">
              Hello
        </div>
    </footer>   
</body>
</html>
4

3 回答 3

3

From your description, I can't tell quite what problem you have, but I'm guessing it's the margin on the body element. Try this:

body {
    margin: 0;
}
于 2013-04-11T22:17:40.723 回答
1

You need to reset body margins to zero.

body {
  margin: 0;
}
于 2013-04-11T22:18:20.670 回答
0

你需要清除正文边缘

* {margin:0; padding:0;} 

但是通用选择器会影响您的页面加载时间

查看 css 重置以及各种修复程序可以为您的浏览器做什么

http://www.cssreset.com/

这也可以为你解释很多事情http://meyerweb.com/eric/thoughts/2007/04/18/reset-reasoning/

于 2013-04-11T22:19:54.787 回答