text boxes

liunx

Guest
Ok, i was wondering if you create a table, which i have done lol :P, How can i make it so the boarder is dotted and not one complete line like it is to begin with?<!--content-->Im interested also.<br />
<br />
I belive it is done by making a dotted box in PhotoShop, slice&dice, then put it into a 3x3 table. That would be my guess, but Id lik to know if there is some way to code it like that.<!--content-->you can do it in css<br />
<br />
<style type="text/css"><br />
td.dotted {border-style: dotted}<br />
</style><br />
<br />
<table ...><br />
<tr><td class="dotted"> content</td></tr></table><br />
<br />
compatible: NN6^ IE5.5^<br />
<br />
:)<!--content-->Originally posted by leoo24 <br />
you can do it in css<br />
<br />
<style type="text/css"><br />
td.dotted {border-style: dotted}<br />
</style><br />
<br />
<table ...><br />
<tr><td class="dotted"> content</td></tr></table><br />
<br />
compatible: NN6^ IE5.5^<br />
<br />
:) <br />
<br />
<br />
/added other border settings, and almost forgot, put your css into an external stylesheet once you're finished<br />
<br />
none <br />
hidden <br />
dotted <br />
dashed <br />
solid <br />
double <br />
groove <br />
ridge <br />
inset <br />
outset<br />
<br />
<br />
<br />
/added2<br />
<br />
damn, sorry about that double post, pressed the quote button instead of the edit button :rolleyes:<!--content-->or in the table tag itself.<br />
<br />
<table boder="3" cellspacing="2" cellpadding="3" width="100%" style="border-collapse: collapse; border: dashed; border-color: #FF0000"><br />
<br />
;)<!--content-->thanks for your help got it fixed :D<!--content-->
 
Back
Top