Skip to content

Instantly share code, notes, and snippets.

@Jany-M
Created September 1, 2016 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jany-M/c0423560d0ae1917da519eaf7ec67058 to your computer and use it in GitHub Desktop.
Save Jany-M/c0423560d0ae1917da519eaf7ec67058 to your computer and use it in GitHub Desktop.
[HTML] Fixed column width table
<table style="table-layout: fixed;">
<colgroup>
<col span="1" style="width: 10%;">
<col span="1" style="width: 10%;">
<col span="1" style="width: 40%;">
<col span="1" style="width: 40%;">
</colgroup>
<tbody>
<tr>
<td>cell 1</td>
<td>cell 2</td>
<td>cell 2</td>
<td>cell 4</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment