Here is the HTML code I am currently working with:
<div class="et_pb_row et_pb_row_1">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough">
<div class="et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_dark et_pb_text_align_left">
</div>
</div>
<div class="et_pb_column et_pb_column_1_2 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_module et_pb_text et_pb_text_2 et_pb_bg_layout_light et_pb_text_align_left">
</div>
</div>
</div>
And here is the CSS associated with this code:
.home .et_pb_section_3.full-width-row .et_pb_row {
display: table;
}
.home .et_pb_section_3.full-width-row .et_pb_row .et_pb_column {
display: table-cell;
}
Currently, I am experiencing an issue where the second column does not match the height of the first column when the viewport width is set to 990px. Is there a way to ensure that both columns have the same height in each row? For example, making sure the 'Projects' cell matches the height of the image on the right, and doing the same for the row below it.