I currently have three elements in a row that I am displaying using a table:
<table>
<tbody>
<tr>
<td id='td1'>some text</td>
<td id='td2' style='width:600px;'>some text</td>
<td id='td3'>some text</td>
</tr>
</tbody>
</table>
I am looking for a way to resize both the left and right cells simultaneously when the browser window is resized. I'm wondering if this can be achieved without the use of JavaScript.
Although I have experimented with CSS resize, it seems to not work in Internet Explorer. I've also tried adjusting the widths of the cells, but so far have had no success. As someone new to CSS, I'm finding this quite challenging.
Is there a possible solution to this issue? Thank you in advance.