I am currently working on a bootstrap table design that features a table with a rowspan of "2" in the right corner, creating a layout with 2 rows on one end and another rowspan of "2" on the other end, as shown in the following image: https://i.sstatic.net/eob6D.png
My issue lies in trying to adjust the width of the table containing the image in the first column. I have attempted using col-1 and colspan="1", but I have not yet found a solution. Could you provide assistance? The total width of the table containing the image should be the same as rowspan="1".
Here is the code snippet:
<tr>
<td rowspan="2" colspan="1">
<img src="IMAGE">
</td>
<td class="col-10">
PRODUCT NAME
</td>
<td rowspan="2" colspan="1">$PRICE</td>
</tr>
<tr>
<td>
<span>DESCRIPCION</strong></span>
</td>
</tr>