I am facing a challenge with a table that includes rows with 2 columns - one for images and the other for text. The issue arises when resizing large images in one column, causing the row to take its height from the image cell rather than the text cell. Since the amount of text in each row varies, assigning an explicit height is not feasible. How can I ensure that both the row and the image cell adjust their heights based on the text cell?
<table border="0" cellspacing="0" cellpadding="0" id="articleTable">
<tr id="row-1" class="articleRow light" >
<td class="imageCell" id="image-cell-1">
<img src="images/Support/CFD.png" alt="" class=""/>
<img src="images/Support/CFD3.png" alt="" class="" />
</td>
<td class="textCell" id="text-cell-1" >
<div class="articleTextWrapper">
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
</div>
</td>
</tr>
<tr id="row-2" class="articleRow dark" style="">
<td class="textCell" id="text-cell-2" >
<div class="articleTextWrapper">
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
</div>
</td>
<td class="imageCell" id="image-cell-2">
<img src="images/Support/TM2.png" alt="" class="" />
<img src="images/Support/TM1.png" alt="" class=""/>
</td>
</tr>