I have a page, where I use <div>
to style the sheet. The problem is that it creates a border around the page. How can I remove this border? Check out the jsfiddle to see what I mean. I am using position: static; I do not want to use fixed because then the page won't scroll correctly.
问问题
129 次
3 回答
1
也许你只是在谈论本地人margin
。<body>
尝试这个;
body {
margin: 0;
}
查看http://jsfiddle.net/Zmpyv/8,我在其中将上述 CSS 添加到您的演示中。
为了避免花时间与此类愚蠢的事情作斗争,我建议您查看为您应用此样式的normalize.css,以及修复浏览器之间的许多其他差异,我认为在创作 CSS 时为您提供了一个更好的起点.
于 2013-08-06T07:13:20.883 回答
0
尝试在 div 中设置它。
border:none
这将删除任何元素的边框..
于 2013-08-06T07:47:45.257 回答
-1
<div class="headerClear" /></div>
看到这个 div 出乎意料地关闭了正确的方法是
<div class="headerClear"></div>
用这个替换并将它添加到你的css
body{ margin:0px;}
于 2013-08-06T06:17:00.940 回答