Maybe this is a general question, but please help me. I have a class in CSS which I often use in my HTML, e.g.
.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>
If I set height property in CSS, then the height will not dynamically follow the "highest" in my HTML.
I want, which one is the "highest" will be the others default height property, even if the others have no content. Is this possible and how can I do this.