There are two examples one with PX and the other with% but I do not know how to do it using% what I put in everything2 to be equal to everything1?
#tudo1{
background: blue;
width: 20%;
height: 50px;
margin-bottom: 30px;
}
#ma1{
height: 25px;
line-height: 25px;
}
#gira1{
height: 25px;
line-height: 25px;
background: green;
}
/*******************************/
#tudo2{
background: blue;
width: 20%;
height: 50px;
margin-bottom: 30px;
}
#ma2{
height: 50%;
/*line-height: ; o que coloco aq?
para ficar igual ao tudo1 afim de fazer
a letra ficar centralizada verticalmente*/
}
#gira2{
height: 50%;
background: green;
/*line-height: ; o que coloco aq?
para ficar igual ao tudo1 afim de fazer
a letra ficar centralizada verticalmente*/
}
<div id="tudo1">
<div id="ma1">macaco</div>
<div id="gira1">girafa</div>
</div>
<div id="tudo2">
<div id="ma2">macaco</div>
<div id="gira2">girafa</div>
</div>