Created
September 1, 2016 14:34
-
-
Save Jany-M/c0423560d0ae1917da519eaf7ec67058 to your computer and use it in GitHub Desktop.
[HTML] Fixed column width table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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