table all cells same width code example
Example 1: html make table columns same width
<table style="table-layout: fixed; width: 100%;" >
<tr>
<td style="width:25%;">First column</td>
<td style="width:25%;">Second column</td>
<td style="width:25%;">Third column</td>
<td style="width:25%;">Fourth column</td>
</tr>
Example 2: table all cells same width
<table style="table-layout: fixed; width: 100%;" >