-1

我是 CSS 和网页设计的新手,如果这个问题很幼稚,我很抱歉。

我的利润有问题。我会发布一个 JSFiddle,但我的问题没有在 JSFiddle 上复制。

HTML

 <div class="messed_up_margin">
        <h1>Messed up Margin</h1>
    </div>

CSS

.messed_up_margin{
    margin:0px;
    width:100%;
    color: white;
    backbround: black;
}

.messed_up_margin h1 {
    text-align: center;
}
4

2 回答 2

1

在您的声明中添加一个类型。是PX吗?是百分比吗?EM?我知道你的意思是零,但它知道吗?(CSS是个混蛋……)

于 2013-11-13T01:52:18.500 回答
0

我看你对 CSS 有点熟悉。浏览器有自己的样式,它会自动应用于元素。只需编写所有六个标题标签并在几个不同的浏览器上打开 html 文件并查看大小和字体差异。

浏览器也有它添加到的样式<body>。因此,您必须告诉浏览器您希望它如何解释<body>. 执行此操作的技术称为 CSS 重置。谷歌搜索将为您提供不同的方式,但这是我见过的一种流行的方式:

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
于 2013-11-13T01:52:11.453 回答