I have column content, with elements having different heights. How do I set the height of all of those elements to the same the heightest of all elements?
what i have:
.content {
border: 1px solid black
}
<div class="container">
<div class="content">content1</div>
<div class="content">content2<br>content2</div>
<div class="content">content3</div>
</div>
how do I set each content height the same as the max height of content?
preferably without javascript