|
From: Scott on 12 Feb 2006 12:31 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 12 Feb 2006 17:05 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 12 Feb 2006 20:43 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 13 Feb 2006 01:46 > which group would that be? > >>>Any ideas? >>Please ask a clientside group [CSS] How about : microsoft.public.scripting.jscript D.
From: dNagel on 13 Feb 2006 01:49 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) > > >
|
Next
|
Last
Pages: 1 2 3 Prev: Cookies problem on Win2003 Eng + IIS 6.0 Next: MSXML4 and selectSingleNode |