Skip to content

Instantly share code, notes, and snippets.

@gunnarbittersmann
Created May 31, 2013 09:33
Show Gist options
  • Select an option

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

Select an option

Save gunnarbittersmann/5683894 to your computer and use it in GitHub Desktop.
box-shadow for col
/**
* box-shadow for col
*/
table
{
border-collapse: collapse;
}
col:last-child
{
background: yellow;
box-shadow: inset 2px 2px 2px 2px black;
}
<table>
<colgroup>
<col/>
<col/>
</colgroup>
<thead>
<tr>
<th>foo</th>
<th>bar</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
</tr>
</tbody>
</table>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment