Created
August 3, 2012 16:27
-
-
Save derekjohnson/3249212 to your computer and use it in GitHub Desktop.
col
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
/** | |
* col | |
*/ | |
.first {background:red} | |
.last {background: blue} |
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
<!-- 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> |
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
{"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