1
How to make the Divs below have the same height every time? The content is dynamic, time content of the first will be higher, time of the second, I could use Tables, but the content is not tabular.
<div style="border: solid; height: 200px;">
<div style="border: solid; display: inline-block;">
DIV1 LINHA 1
</div>
<div style="border: solid; display: inline-block;">
DIV2 LINHA 1
<br> DIV2 LINHA 2
<br> DIV2 LINHA 3
</div>
</div>
Possible duplicate of How to make two Ivs the same height even if they have different content sizes?
– user54824
Can it be with flex box? You are using Bootstrap4?
– hugocsl
You could create a unique css class for both div’s and change the height property as needed.
– Carlos Andrade