Greetings: I know this has been posted several times but searching both nipltd and activestate archives comes up empty. What I am interested in doing is creating a single pixal border around a table or text block using dtml. Could some one repost the code snippet or provide a short explanation on how to do this with dtml as this neophite wants to exand on his zen...:) Many thanks for any info. -- Chris H The future remains Open......
Thursday, May 30, 2002, 8:30:22 PM, you wrote: CH> Greetings: CH> I know this has been posted several times but searching both nipltd and CH> activestate archives comes up empty. What I am interested in doing is CH> creating a single pixal border around a table or text block using dtml. Could CH> some one repost the code snippet or provide a short explanation on how to do CH> this with dtml as this neophite wants to exand on his zen...:) CH> Many thanks for any info. AFAIAC it's nothing to do wiht dtml and more to do with html. basically you need to create an illusion. <table bgcolor="#000000" cellpadding="3" cellspacing="1"> <tr> <td bgcolor="#ffffff">This will have a one pixel border</td> <td bgcolor="#ffffff">This will have a one pixel border</td> <td bgcolor="#ffffff">This will have a one pixel border</td> </tr> <tr> <td bgcolor="#ffffff">This will have a one pixel border</td> <td bgcolor="#ffffff">This will have a one pixel border</td> <td bgcolor="#ffffff">This will have a one pixel border</td> </tr> </table> -- Best regards, phil mailto:phil@harris-family.info
Hello phil, Thursday, May 30, 2002, 11:54:40 PM, you wrote: phfi> AFAIAC it's nothing to do wiht dtml and more to do with html. phfi> basically you need to create an illusion. phfi> <table bgcolor="#000000" cellpadding="3" cellspacing="1"> phfi> <tr> phfi> <td bgcolor="#ffffff">This will have a one pixel border</td> ... [loads of table-stuff snipped] ... phfi> </tr> phfi> </table> phfi> -- phfi> Best regards, phfi> phil mailto:phil@harris-family.info Illusions are out.. Semantics and structure are in. go XHTML + CSS <p style="border:1px solid #000"> This will have a one pixel border </p> :) -- Geir Bækholt web-developer geirh@funcom.com funcom oslo | webdev-team
On Thursday 30 May 2002 18:12, Geir Bækholt wrote:
Illusions are out.. Semantics and structure are in. go XHTML + CSS
<p style="border:1px solid #000"> This will have a one pixel border </p>
Thanks for all your comments......... -- Chris H The future remains Open......
participants (3)
-
Chris Herrnberger -
Geir Bækholt -
phil@harris-family.info