1
There are two Examples one with PX and the other with % but I don’t know how to use % what I put in all2 to be the same as all1?
#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>