Solution: Do the following 2 things
1. <table style='table-layout: fixed'>
2. Set width for every columns in the first row (you can leave the last column, or any one column of all)
<thead>
<tr>
<th style='width: 5%; >blah...</th>
<th style='width: 10%; >blah...</th>
<th style='width: 25%; >blah...</th>
<th style='width: 25%; >blah...</th>
<th>blah...</th>
</tr>
</thead>
That is all.
No comments:
Post a Comment