Posted by Els on 10/11/05 21:20
Piotr.Ozaist@gmail.com wrote:
> Hi everybody,
> I've got a problem with html.
> Does anybody know what I have to do (special tag, some styles) if I
> want that html code like:
> <html>
> <body>
> <table>
> <tr>
> <td>
> a
> b
> c
> </td>
> </tr>
> </table>
> </body>
> </html>
> will produce
> "abc"
> not
> "a b c"
>
> I know that this white spaces comes from new line char, but I want to
> remove them and I the content of <TD> tag have to be written like in
> example above.
>
> I tried some styles, tags like <NOBR> but it doesn't work.
> Please help :)
Have you tried eliminating the space on the left of the characters?
<td>
a
b
c
</td>
instead of
<td>
a
b
c
</td>
?
Curiosity is my middel name: /why/ do you want to write the content
like
a
b
c
instead of abc?
--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
[Back to original message]
|