I want to style a toolbar similar to the android toolbar. First I defined a 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;
}
h1 {
color: black;
text-align: center;
margin-top: 10px;
margin-bot: 10px;
font-size: 30px;
}
<header>
<h1>Home</h1>
</header>
What I dont understand now is the small gap at the top of the title:
I set the padding and the margin to be zero. so why do I get this gap at the top of my header?