Created
August 6, 2012 08:03
-
-
Save gunnarbittersmann/3272154 to your computer and use it in GitHub Desktop.
th with rounded corners
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
| /** | |
| * 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; | |
| } | |
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
| <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> | |
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":"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