Could someone assist me with a question I have? I am using a CSS class in my HTML code, like this:
.boxBooking {
width: 14.28%;
}
<div class="boxBooking">
....
</div>
<div class="boxBooking">
test<br/> test
<br/>
</div>
<div class="boxBooking">
a<br/> b
<br/> c
<br/> d
<br/>
</div>
My issue is that when I set the height property in CSS, it does not dynamically adjust to the "highest" element in my HTML.
I want the height of each element to match the height of the tallest one, regardless of whether the others have content or not. Is there a way to achieve this and how can I do it?