来自哪里的额外填充或边距?

时间:2009-10-07 21:25:54

标签: padding margins

October Landing Page

我正在开发一个页面上有几个问题。在上面的页面中,您会看到页面底部有三个方框 - 两个格式相同,第三个方框有自己的问题。

专栏1& 2(没有边框的那些)

问题:不知何故,列表项有一些额外的左边填充(显然)未在样式表中指定 - 至少不是故意的。他们是否继承了其他地方的填充物?两个盒子似乎都表现出这个问题。

方框3(带捐赠按钮的那个)

问题:顶行的按钮似乎是从某个地方继承了一些额外的填充或边距,但我无法弄清楚在哪里。

任何解释或建议??

*更新:好的,所以我用方框1&修复了问题。 2通过为其ul添加新规则,并将填充设置为0px。不确定从哪里继承填充,但是有效。

1 个答案:

答案 0 :(得分:2)

不同的浏览器使用不同的默认设置,为什么有些人选择使用CSS重置,以便将默认值设置为特定值(如0px等),检查这是否会解决您的问题:

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, font, 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 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}