Table borders and CSS...

liunx

Guest
Tables beat the hell out of me... it's so confusing!!Well, I have this in my .css file:<br />
<br />
table { border-width: thin; border-color: #434657 }<br />
<br />
and a table on my webpage. Something like:<br />
<br />
<TABLE cellspacing="0" cellpadding="0" wdith="770">(some stuff)</TABLE><br />
<br />
But on the actual page, the borders don't show up at all! Some help please...<!--content-->you understand css but not a simple table?<br />
<br />
I thnk you missed something<br />
<br />
try border: thin<!--content-->or try using 1px for the border-width instead of "thin".<!--content-->yes, i always prefer to set the actual width of my borders:<br />
<br />
{border:1px solid #000000;}<br />
<br />
other borders (<!-- m --><a class="postlink" href="http://www.w3schools.com/css/tryit.asp?filename=trycss_border-style">http://www.w3schools.com/css/tryit.asp? ... rder-style</a><!-- m -->) :)<!--content-->if you want to use the word "thin", you must do so:<br />
<br />
TABLE{border: thin;}<br />
<br />
:)<!--content-->
 
Back
Top