diff options
author | 2018-11-24 23:03:13 +0000 | |
---|---|---|
committer | 2018-11-24 23:03:13 +0000 | |
commit | 6bcc7ca88fd04cefea49df12e0ec03d0f6eb0cad (patch) | |
tree | 07e8b1723500698cda92b04a5503f3a1eb58b53d /usr.bin/mandoc/mandoc.css | |
parent | only attach pvclock(4) inside a KVM guest (diff) | |
download | wireguard-openbsd-6bcc7ca88fd04cefea49df12e0ec03d0f6eb0cad.tar.xz wireguard-openbsd-6bcc7ca88fd04cefea49df12e0ec03d0f6eb0cad.zip |
Implement horizontal and vertical alignment of tbl(7) cell content
in -T html output. This does not handle spanned cells yet.
Missing feature reported by Pali dot Rohar at gmail dot com.
Diffstat (limited to 'usr.bin/mandoc/mandoc.css')
-rw-r--r-- | usr.bin/mandoc/mandoc.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mandoc.css b/usr.bin/mandoc/mandoc.css index a704b6bbaf8..29c1adbd01a 100644 --- a/usr.bin/mandoc/mandoc.css +++ b/usr.bin/mandoc/mandoc.css @@ -1,4 +1,4 @@ -/* $OpenBSD: mandoc.css,v 1.24 2018/08/27 23:12:57 schwarze Exp $ */ +/* $OpenBSD: mandoc.css,v 1.25 2018/11/24 23:03:13 schwarze Exp $ */ /* * Standard style sheet for mandoc(1) -Thtml and man.cgi(8). */ @@ -9,7 +9,7 @@ html { max-width: 65em; } body { font-family: Helvetica,Arial,sans-serif; } table { margin-top: 0em; margin-bottom: 0em; } -td { vertical-align: top; } +td { vertical-align: middle; } ul, ol, dl { margin-top: 0em; margin-bottom: 0em; } li, dt { margin-top: 1em; } |