在HTML页面顶部删除10px的边距

时间:2014-04-03 16:23:32

标签: html css

我有一个非常简单的HTML页面,其中包含一个非常简单的样式表。该页面的顶部边距为10px,不会消失。这是我的布局和样式:

html, body {
    padding: 0;
    margin: 0;
    margin-top: -10px;
}

.main-container {
  with: 100%;
}

.left-column {
  width: 25%;
  float: left;
  background-color: lightblue;
  height: 500px;
  display: inline-block;
}

这是我的HTML

<!DOCTYPE html>
<html>
<head>
  <link href="styles.css" rel="stylesheet" type="text/css">
</head>
  <body>
    <main class="main-container">
      <aside class="left-column">

      </aside><!-- .left-column -->
      <section class="news-feed">
        <article class="story-item">
          <header class="story-title">
            <h1>This is the title of the post</h1>
          </header><!-- .story-title -->
          <p class="story-details">
            This is the body of the post
          </p>
        </article><!-- .story-item -->
      </section><!-- .news-feed -->
    </main><!-- .main-container -->
  </body>
</html>

4 个答案:

答案 0 :(得分:4)

H1标签的标准边距为10px,这导致了这种情况。尝试重置:

*,html,body {
margin:0;
padding:0;
}

&#34; *&#34; character是一个全局选择器。

答案 1 :(得分:0)

试试这个,

body {    
    margin: 0 !important;
    padding: 0 !important;
}

答案 2 :(得分:0)

使用reset或normalise.css

或者这通常会有效。

body {
margin:0;
padding:0;
}

答案 3 :(得分:0)

您的问题是h1标签使用的默认样式:

h1 {margin:0px;}