> - More serious is that the verse and quote environments are still
> centered in Powerbrowser.
The reason is probably that Powerbrowser does not recognize the
property WIDTH="1" in <TD>, a feature that should be legal in html 3.2.
> The html output for my address, for example,
> looks like this:
>
> <TABLE
> WIDTH="100%" CELLPADDING="0" CELLSPACING="15"><TR><TD
> WIDTH="1"></TD><TD
> >
>
> XX XX<BR>
> XX<BR>
> XX xx<BR>
> The xx<BR>
> email: <A HREF="mailto:[email protected]">[email protected]</A>
> </TD></TR></TABLE>
>
> If I remove the ‘‘WIDTH="100%"’’ from the table tag, this is fixed,
> without breaking anything in MSIE or Netscape.
Once you remove the WIDTH property, the width of the table is
determined by its content instead of the page dimension. This
can cause adversary conditions for nested environments.
For instance
\documentstyle{article}
\input tex4ht.sty \Preamble{html} \begin{document} \EndPreamble
\begin{quote}
The buck stops here.
\begin{flushleft}1\\123\\12345\end{flushleft}
\begin{flushright}1\\123\\12345\end{flushright}
\end{quote}
\end{document}
creates the outcome
+-------------------------------------------------------+
| The buck stops here. |
| 1 |
| 123 |
| 12345 |
| |
| 1 |
| 123 |
| 12345 |
+-------------------------------------------------------+
which translates to the following one when the WIDTH property
is removed.
+-------------------------------------------------------+
| The buck stops here. |
| 1 |
| 123 |
| 12345 |
| |
| 1 |
| 123 |
| 12345 |
+-------------------------------------------------------+