I have two divs like that:
<div id="div1">ABC</div>
<div id="div2">ABC DEF GHI JKL MNO</div>
#div1 {
width: 50px;
background-color: red;
float: left;
}
#div2 {
width: 50px;
background-color: green;
float: left;
}
And i'd like to make the height of div1 is the same height of div2.
How can i do? Thanks!