From: Scott on
Is there a way to force the below testxxxxx text to wrap or stay within the
200px width of it's cell? Sometimes I have long url's that make a html email
table stretch because of long length. I thought maybe there was a tag like
NOWRAP that may prevent this behavior.

Any ideas?

HTML:

<table border="0" cellpadding="0" cellspacing="0" width="200">
<tr>
<td width="200">test
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</td>
</tr>
</table>


From: Evertjan. on
Scott wrote on 12 feb 2006 in microsoft.public.inetserver.asp.general:

> Is there a way to force the below testxxxxx text to wrap or stay
> within the 200px width of it's cell? Sometimes I have long url's that
> make a html email table stretch because of long length. I thought
> maybe there was a tag like NOWRAP that may prevent this behavior.
>
> Any ideas?
>
> HTML:
>
> <table border="0" cellpadding="0" cellspacing="0" width="200">
> <tr>
> <td width="200">test
> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
> x</td>
> </tr>
> </table>
>

Not with serverside ASP code.

Please ask a clientside group [CSS]

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
From: Scott on
which group would that be?


"Evertjan." <exjxw.hannivoort(a)interxnl.net> wrote in message
news:Xns9768EAD543B8Feejj99(a)194.109.133.242...
> Scott wrote on 12 feb 2006 in microsoft.public.inetserver.asp.general:
>
>> Is there a way to force the below testxxxxx text to wrap or stay
>> within the 200px width of it's cell? Sometimes I have long url's that
>> make a html email table stretch because of long length. I thought
>> maybe there was a tag like NOWRAP that may prevent this behavior.
>>
>> Any ideas?
>>
>> HTML:
>>
>> <table border="0" cellpadding="0" cellspacing="0" width="200">
>> <tr>
>> <td width="200">test
>> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
>> x</td>
>> </tr>
>> </table>
>>
>
> Not with serverside ASP code.
>
> Please ask a clientside group [CSS]
>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)


From: dNagel on
> which group would that be?
>
>>>Any ideas?
>>Please ask a clientside group [CSS]

How about : microsoft.public.scripting.jscript

D.
From: dNagel on
maybe...

<td style="overflow:hidden" width="200">test

or

<td width="200"><div style="width:200; height:auto; overflow:visible;" >test ... </div> </td>

just off the top of my head...

D.



Scott wrote:
> which group would that be?
>
>
> "Evertjan." <exjxw.hannivoort(a)interxnl.net> wrote in message
> news:Xns9768EAD543B8Feejj99(a)194.109.133.242...
>
>>Scott wrote on 12 feb 2006 in microsoft.public.inetserver.asp.general:
>>
>>
>>>Is there a way to force the below testxxxxx text to wrap or stay
>>>within the 200px width of it's cell? Sometimes I have long url's that
>>>make a html email table stretch because of long length. I thought
>>>maybe there was a tag like NOWRAP that may prevent this behavior.
>>>
>>>Any ideas?
>>>
>>>HTML:
>>>
>>><table border="0" cellpadding="0" cellspacing="0" width="200">
>>> <tr>
>>> <td width="200">test
>>>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
>>>x</td>
>>> </tr>
>>></table>
>>>
>>Not with serverside ASP code.
>>
>>Please ask a clientside group [CSS]
>>
>>--
>>Evertjan.
>>The Netherlands.
>>(Please change the x'es to dots in my emailaddress)
>
>
>