我想设置一个类似于android工具栏的工具栏。 首先我定义了一个标题:
html,
body {
height: 100%;
margin: 0;
background-color: #E5E5E5;
font-family: 'RobotoDraft', 'sans-serif';
}
header {
background: #FF0000;
height: 50px;
width: 100%;
margin: 0;
padding: 0;
}
h1 {
color: black;
text-align: center;
margin-top: 10px;
margin-bot: 10px;
font-size: 30px;
}
<header>
<h1>Home</h1>
</header>
我现在不明白的是标题顶部的小差距:
我将填充和边距设置为零。那么为什么我会在标题的顶部出现这个差距呢?
答案 0 :(得分:2)
由于<h1>
标记的上边距,因此会创建标题顶部的差距。
这称为collapsing margins。您可以在此处查看禁用它的方法:How to disable margin-collapsing?。
例如,在父overflow:hidden;
元素上设置<header>
:
html,
body {
height: 100%;
margin: 0;
background-color: #E5E5E5;
font-family: 'RobotoDraft', 'sans-serif';
}
header {
background: #FF0000;
height: 50px;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
h1 {
color: black;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
font-size: 30px;
}
&#13;
<header>
<h1>Home</h1>
</header>
&#13;
答案 1 :(得分:1)
答案 2 :(得分:1)
答案 3 :(得分:1)
由于h1
中的header
有margin-top: 10px
,因此存在差距。将它设置为0px,差距将不再出现。
另外,作为附注,margin-bot
不是有效的css属性。这是margin-bottom
。
html,
body {
height: 100%;
margin: 0;
background-color: #E5E5E5;
font-family: 'RobotoDraft', 'sans-serif';
}
header {
background: #FF0000;
height: 50px;
width: 100%;
margin: 0;
padding: 0;
}
h1 {
color: black;
text-align: center;
margin-top: 0px;
margin-bottom: 10px;
font-size: 30px;
}
&#13;
<header>
<h1>Home</h1>
</header>
&#13;