I have the following code:
.header {
  background-color: red;
}
.content {
  background-color: blue;
}
em {   
  display: inline-block;
  background-color: yellow;
}
img {
  display: block;
}     <div class="header">
        <em>
          <img src="https://placehold.co/60x60"/>
        </em>
      </div>
    
      <div class="Content">
        Some content
      </div>How the remove the space under the image?
 
    