I have to set a fixed width to the columns of my table without considering the amount of text in the cells. How can I achieve this?
Add a <div> tag inside <td>.
<div>
<td>
<td><div style="width: 200px" >Your content</div></td>
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Add a
<div>
tag inside<td>
.<td><div style="width: 200px" >Your content</div></td>