I'm studying div's and I'm having difficulty aligning the div's in the way I need it, as in the following image:
However,itlookslikethis:
#total {
background-color: red;
width: 300px;
height: 400px;
}
#pequeno {
background-color: yellow;
float: right;
width: 50px;
height: 60px;
}
#maior {
background-color: blue;
float: right;
width: 50px;
height: 100px;
}
<div id="total">
<div id="pequeno"> </div>
<div id="maior"></div>
</div>