无法让div显示在屏幕的最顶部

时间:2017-07-11 20:34:26

标签: html css

我正在尝试一个简单的练习问题来学习CSS,我在设置屏幕顶部的div显示时遇到了麻烦。正如您所看到的背景颜色,它没有触及顶部,但是如果您查看下面的图像,您会看到添加边框会因某种原因解决问题。

No border, with space With border, no space

body {
  margin: 0;
}

div#wrap {
  background-color: #55ccff;
  width: 60%;
  min-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
<div id="wrap">
  <h1>Stuff</h1>
  <p>
    Stuff
  </p>
  <ul>
    <li>Stuff here</li>
  </ul>

  <p class="copyright">
    Stuff
  </p>
</div>

3 个答案:

答案 0 :(得分:1)

您的<h1>元素也有一个导致您看到的差距的边距。您可以像在body元素上一样删除它。

body, h1 {
  margin: 0;
}

div#wrap {
  background-color: #55ccff;
  width: 60%;
  min-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
<div id="wrap">
  <h1>Stuff</h1>
  <p>
    Stuff
  </p>
  <ul>
    <li>Stuff here</li>
  </ul>

  <p class="copyright">
    Stuff
  </p>
</div>

答案 1 :(得分:0)

您的浏览器为大多数元素提供默认样式。开始一个新项目时最好的办法是放置&#34;重置&#34;在css文件的开头。这将取消默认样式。

许多人使用的标准重置是找到错误重置here。将此代码放在您的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;
}

答案 2 :(得分:0)

尝试添加'overflow:auto;'你的#wrap声明。标题上的默认浏览器边距导致问题。