我得到随机的15px上下边距,我不知道它们来自哪里。
这不是在IE中发生的,只有FF和Chrome 您可以在http://test.webspirited.com/hailwood
查看实时示例Random Padding http://webspirited.com/example.png
相关的HTML
<div id="pageContent">
<div id="contentHead">Sample Page</div>
<div id="contentBody">
<div id="contentNoSidebar">
<p>Here is content</p>
...
<p>Here is content</p>
</div>
</div>
</div>
相关的CSS
#pageContent {
background-color: #fff;
padding: 10px;
}
#contentHead {
background: url(../images/contentHeader.png) repeat-x;
height: 33px;
width: 882px;
color: white;
font-size: 14px;
font-weight: bold;
line-height: 34px;
padding-left: 48px;
text-transform: uppercase;
}
#contentBody{
background-color: #d4d3d1;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
-moz-border-radius: 0 0 10px 10px;
border: 1px solid #8b8b8b;
}
#contentNoSidebar{
background-color: #000;
}
答案 0 :(得分:4)
如果您正在讨论每个<p>
标记周围的边距,那么这是用户代理样式表所固有的。
默认情况下,段落标签具有周围边距。如果您执行以下操作:
p { margin: 0; padding: 0; }
你应该能够摆脱边距/填充。
答案 1 :(得分:1)
段落默认为1em垂直边距(顶部和底部,但它们可以重叠)。我猜你在谈论有一个底部边缘的div - 但它没有,这是它下方p
的最高边缘。
答案 2 :(得分:1)
现在你添加了一个测试图像,我知道你的意思。
使用此CSS解决问题:
p { margin: 0; padding: 16px 0 }
简而言之,使用padding
代替margin
在段落之间提供相同的间距。
答案 3 :(得分:0)
删除内容正文css上的 - -moz-border-radius: 0 0 10px 10px;
命令并使用
保证金:0 px;根据你的内容填充。它会起作用,这就是声誉的原因。在您的mozila浏览器中使用firebug,我们可以轻松找到错误。
答案 4 :(得分:0)
您的问题似乎已经解决,但您可能希望开始使用CSS重置来覆盖用户代理样式表的所有内容。使您的网页样式化,使其在大多数浏览器中看起来更容易。
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}