If I remove the tags it is aligned correctly, but when I insert the image or, for example, h1 it already descends again, if it inserts in all it returns to normal, but why does it occur?
body {
background-color: #DDDDDD
}
#container1 {
width: 100%;
height: 200px;
text-align: center;
}
.box {
display: inline-block;
margin: 5px;
}
#ativos {
width: 180px;
height: 190px;
background-color: #1461c4;
}
#status {
width: 244px;
height: 190px;
background-color: #DE962F;
}
#instalados {
width: 216px;
height: 190px;
background-color: #DE962F;
}
#recebimentos {
width: 613px;
height: 190px;
background-color: #5cb85c;
}
<div id="container1">
<div id="ativos" class="box">
<img src="icones/ativos.png">
<!--<H5>CLIENTES ATIVOS</H5>-->
</div>
<div id="status" class="box">
<!--<H5>STATUS CLIENTES</H5>-->
</div>
<div id="instalados" class="box">
<img src="icones/ion.png">
<!--<h5>CLIENTES INSTALADOS</h5>-->
</div>
<div id="recebimentos" class="box">
<img src="">
<!--<h5>RECEBIMENTOS LOCAL MÊS</h5>-->
</div>
</div>