网站顶部的空白

时间:2018-05-30 07:50:13

标签: html css whitespace

我的网站顶部有一个空格,我想删除,不知道如何:

body {
  border: 0;
  padding: 0;
  margin: 0;
}

.header {
  width: 900px;
  height: 100px;
  background-color: #5132FF;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  border: 0;
  top: 0;
}
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>DevDoWeb.com</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="=width=1920, initial-scale=1.0, user-scalable=yes">
    <link rel="stylesheet" type="text/css" href="styleSheet.css">
    <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
  </head>
  <body>
    <div class="header">
      <h3 class="headerText">Test</h3>
    </div>
  </body>
</html>

开发工具告诉我,它不能是maring,padding或border ....我真的不知道该怎么做,任何帮助都表示赞赏。

6 个答案:

答案 0 :(得分:3)

在这种情况下,空格是由浏览器样式表添加到h3的边距引起的。如果通过给h3边距为0来删除它,则可以摆脱空格。

&#13;
&#13;
body {
  border: 0;
  padding: 0;
  margin: 0;
}

.header {
  width: 900px;
  height: 100px;
  background-color: #5132FF;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  border: 0;
  top: 0;
}

h3 {
  margin-top: 0;
}
&#13;
<!DOCTYPE html>
<html lang="en">

<head>
  <title>DevDoWeb.com</title>
  <meta charset="UTF-8">
  <meta name="viewport" content="=width=1920, initial-scale=1.0, user-scalable=yes">
  <link rel="stylesheet" type="text/css" href="styleSheet.css">
  <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
</head>

<body>
  <div class="header">
    <h3 class="headerText">Test</h3>
  </div>
</body>

</html>
&#13;
&#13;
&#13;

答案 1 :(得分:2)

试试这个:

h3 {
  margin: 0;
}

&#13;
&#13;
body {
  border: 0;
  padding: 0;
  margin: 0;
}

.header {
  width: 900px;
  height: 100px;
  background-color: #5132FF;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  border: 0;
  top: 0;
}

h3 {
  margin: 0;
}
&#13;
<div class="header">
  <h3 class="headerText">Test</h3>
</div>
&#13;
&#13;
&#13;

答案 2 :(得分:1)

在CSS中,进行这些更改

body {
border: 0;
padding: 0;
margin: 0;
}

.header {
width: 900px;
height: 100px;
background-color: #5132FF;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: -20px;
border: 0;
top: 0;

}

答案 3 :(得分:1)

您需要从margin-top

中删除headerText

body {
border: 0;
padding: 0;
margin: 0;
}

.header {
width: 900px;
height: 100px;
background-color: #5132FF;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: 0;
border: 0;
top: 0;

}
.headerText {
  margin-top: 0;
}
<div class="header"><h3 class="headerText">Test</h3>

答案 4 :(得分:-1)

在你的css文件上添加它。

* {
  margin: 0;
  padding: 0;
}

答案 5 :(得分:-1)

我强烈建议您使用重置样式表,例如Eric Meyers。此链接还说明了它们是什么以及为什么要使用它们。