diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-09-04 01:37:08 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2007-09-04 01:37:08 +0200 |
commit | 97c8ae11c988fe6116737932a51f07128d82904e (patch) | |
tree | 293a9882499de3f9cdd1e9fb82a5d38b9c71f5db /local.css | |
parent | bf22c2c03315191065b53b635d76c9d9d6bc500b (diff) | |
download | web-97c8ae11c988fe6116737932a51f07128d82904e.tar.gz web-97c8ae11c988fe6116737932a51f07128d82904e.tar.bz2 web-97c8ae11c988fe6116737932a51f07128d82904e.zip |
tschwinge is some sort of CSS god by now... ;-)
Diffstat (limited to 'local.css')
-rw-r--r-- | local.css | 29 |
1 files changed, 22 insertions, 7 deletions
@@ -41,14 +41,29 @@ pre font-size: small; } -.table1 +.table_style_1 { text-align: left; - /* - * I want this `vertical-align' thing to work for the table elements. This - * doesn't work as it's done below. Shouldn't `td.table1' work? It also - * doesn't. Help. -- tschwinge, mostly CSS ignorant. - */ - vertical-align: top; font-size: small; + + border-width: thin; + border-style: solid; + border-collapse: collapse; + empty-cells: show; +} + +.table_style_1 th +{ + vertical-align: top; + + border-width: thin; + border-style: solid; +} + +.table_style_1 td +{ + vertical-align: top; + + border-width: thin; + border-style: dotted; } |