TABLE { border: 1px solid #eee; } TABLE TD { border: 1px solid #eee; }
Unlike most solutions, this also correctly changes the color of the cell borders.
12374 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
TABLE { border: 1px solid #eee; } TABLE TD { border: 1px solid #eee; }
/* same rule, applied to two elements */ table, table td {border: solid 1px #eee;}
#mytable1, #mytable1 td {border: 1px solid #eee;}
<table id="mytable1"> <tr><td>content</td></tr> </table>
You need to create an account or log in to post comments to this site.
/* same rule, applied to two elements */
table, table td {border: solid 1px #eee;}