1
If I take the tags it is aligned right, however when I insert the image or, for example, H1 it already goes down again, if insert in all it goes back to normal, but because this occurs?
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>
Vitor, your question is very confusing. Read it here: http://answall.com/help/how-to-ask will help you next time.
– Filipe Moraes