|
Posted by Neredbojias on 10/11/05 21:19
With neither quill nor qualm, Piotr.Ozaist@gmail.com quothed:
> 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 :)
>
> Ozi
One thing that will help is doing this:
<td>
a
b
c</td>
Another thing you can try is to style the cell as:
white-space:nowrap;
-if, indeed, the text doesn't need to wrap.
You can also try:
letter-spacing:1px:
for example, but the spacing will then not be "normal".
--
Neredbojias
Contrary to popular belief, it is believable.
Navigation:
[Reply to this message]
|