Skip to content

Instantly share code, notes, and snippets.

@gunnarbittersmann
Created August 6, 2012 08:03
Show Gist options
  • Select an option

  • Save gunnarbittersmann/3272154 to your computer and use it in GitHub Desktop.

Select an option

Save gunnarbittersmann/3272154 to your computer and use it in GitHub Desktop.
th with rounded corners
/**
* th with rounded corners
*/
table
{
border-spacing: 0px;
}
th, td
{
padding: 1em;
background: silver;
text-align: center;
vertical-align: middle;
}
th, th ~ td
{
border-top: 1em;
box-shadow: inset 0 1em 0 0 white;
padding-top: 2em;
}
th
{
border-radius: 1em 0 0 1em;
}
<table>
<tbody>
<tr>
<th>th</th>
<td>td</td>
<td>td</td>
<td>td</td>
</tr>
<tr>
<th rowspan="2">th</th>
<td>td</td>
<td>td</td>
<td>td</td>
</tr>
<tr>
<td colspan="3">td</td>
</tr>
<tr>
<th rowspan="2">th</th>
<td>td</td>
<td>td</td>
<td>td</td>
</tr>
<tr>
<td>td</td>
<td colspan="2">td</td>
</tr>
<tr>
<th rowspan="3">th</th>
<td>td</td>
<td>td</td>
<td>td</td>
</tr>
<tr>
<td>td</td>
<td colspan="2">td</td>
</tr>
<tr>
<td colspan="3">td</td>
</tr>
</tbody>
</table>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment