Skip to content

Instantly share code, notes, and snippets.

@shabunc
Created April 25, 2012 11:18
Show Gist options
  • Select an option

  • Save shabunc/2489042 to your computer and use it in GitHub Desktop.

Select an option

Save shabunc/2489042 to your computer and use it in GitHub Desktop.
Untitled
table {
border: 1px solid red;
height: 200px;
width: 400px;
}
thead td {
height: 10px;
}
tbody {
}
tbody td {
background: pink;
height: 10px;
}
<table>
<thead>
<tr>
<td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td>
</tr>
</thead>
<tbody>
<tr>
<td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td>
</tr>
<tr> <td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td>
</tr>
<tr> <td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7"></td>
</tr>
</tfoot>
</table>
{"view":"split-vertical","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