Skip to content

Instantly share code, notes, and snippets.

@derekjohnson
Created August 3, 2012 16:27
Show Gist options
  • Save derekjohnson/3249212 to your computer and use it in GitHub Desktop.
Save derekjohnson/3249212 to your computer and use it in GitHub Desktop.
col
/**
* col
*/
.first {background:red}
.last {background: blue}
<!-- content to be placed inside <body>…</body> -->
<body>
<table>
<colgroup>
<col class="first">
<col>
<col class="last">
</colgroup>
<thead>
<tr>
<th>Peter</th>
<th>Paul</th>
<th>Mary</th>
</tr>
</thead>
<tbody>
<tr>
<td>One</td>
<td>Two</td>
<td>Three</td>
</tr>
</tbody>
</table>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment