why there is a little gap between navbar and header when i make navbar  display: inline-block; and how can i remove this gap?
please check the code here...
nav {
  display: inline-block;
  width: 100%;
  height: 25px;
  border: 1px solid red;
}
header {
  display: inline-block;
  width: 100%;
  height: 600px;
  border: 1px solid green;
}<nav></nav>
<header></header> 
    