diff options
author | foobar <sniper@php.net> | 2002-10-09 23:18:47 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-10-09 23:18:47 +0000 |
commit | 1345c761620c14878b5e6685a3214d735fb8e0e2 (patch) | |
tree | df5ca42c3c6e03ebc5c85ac6380eb03463aea547 /ext/standard/css.c | |
parent | 418908f994055556d2a5a1919f36ba83635da544 (diff) | |
download | php-git-1345c761620c14878b5e6685a3214d735fb8e0e2.tar.gz |
Revert previous change, it did not fix anything.
Diffstat (limited to 'ext/standard/css.c')
-rw-r--r-- | ext/standard/css.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/standard/css.c b/ext/standard/css.c index 64139fb277..f07f7e7f33 100644 --- a/ext/standard/css.c +++ b/ext/standard/css.c @@ -38,13 +38,12 @@ PHPAPI void php_info_print_css(void) PUTS("h1 {font-size: 150%;}\n"); PUTS("h2 {font-size: 125%;}\n"); PUTS(".p {text-align: left;}\n"); - PUTS(".e {text-align: left; background-color: #ccccff; font-weight: bold;}\n"); - PUTS(".h {text-align: left; background-color: #9999cc; font-weight: bold;}\n"); - PUTS(".v {text-align: left; background-color: #cccccc;}\n"); + PUTS(".e {background-color: #ccccff; font-weight: bold;}\n"); + PUTS(".h {background-color: #9999cc; font-weight: bold;}\n"); + PUTS(".v {background-color: #cccccc;}\n"); PUTS("i {color: #666666;}\n"); PUTS("img {float: right; border: 0px;}\n"); PUTS("hr {width: 600px; align: center; background-color: #cccccc; border: 0px; height: 1px;}\n"); - } /* }}} */ |