我遇到的问题只出现在Firefox中(我正在使用v28)。请参阅我的fiddle获取直观说明。
基本上,#header-wrap
内的内容导致#header-wrap
的灰色背景与红色底边之间的差距为30px左右。我已经将问题缩小到.jumbotron
的底部边距为30px,但我不能为我的生活弄清楚为什么它导致#header-wrap
背景与它的边界之间的差距只在firefox中。
编辑:我看到我的页面的小提琴版本也在chrome中执行此操作。但实际页面只在firefox中执行。不过,对此问题的任何帮助和解释都将不胜感激。
我知道我可以通过删除.jumbotron
上的边距来解决这个问题,但我不能有良心做到这一点并继续前进而不理解为什么它只发生在firefox:)
答案 0 :(得分:0)
你应该在良心上删除保证金。我只是说你应该使用CSS重置。 :)它只发生在firefox中,因为它可以在此上下文中使用此行为读取默认h3
CSS重置示例
/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
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;
}