diff options
author | Juliane Clausen <git@juliane-clausen.de> | 2013-07-25 17:31:36 +0200 |
---|---|---|
committer | Juliane Clausen <git@juliane-clausen.de> | 2013-07-25 17:31:36 +0200 |
commit | 9b6159063e16376db37d4346e2a8c8e109c0584e (patch) | |
tree | d11c1d24401a6bd84a8282cb5ea56b777f1b7d68 | |
parent | a7545c250b8d8249e694abebf064de32602968a3 (diff) |
let's see if this table css will work
-rwxr-xr-x | local.css | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -5,13 +5,17 @@ /* Tables */ table { + color:#000000; padding:0px; - border: 1px; } th { - text-align:left; + color:#000000; + background:#E6E6E6; + font-weight:bold; + padding:5px 10px; + text-align:center; vertical-align:top; } @@ -20,9 +24,16 @@ tr font-weight:normal; } +tr:nth-child(odd) td +{ +background:#E6E6E6; +} + td { - padding:0px; + background:#ffffff; + padding:2px 10px; text-align:left; vertical-align:top; } + |