so, I have this in a html code:
<span class="a">Lorem</span>
<span class="b">Ipsum</span>
with this css:
span.a {
display: block;
border: 1px solid #60ddfc;
width: 40%;
padding: 1%;
float: left;
}
span.b {
display: block;
border: 1px solid #60ddfc;
width: 40%;
padding: 1%;
float: right;
}
and I want to make is so that both spans are always equivalent long, like, if I have multiple lines in the first but only one in the second line, the second line should be just as long as the first one