How do the divs below have the same height always? The content is dynamic, the content of the first time will be larger, the second time, 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>