Ciao a tutti
Sto creando un forum e avevo intenzione di mettere una tabella sotto il logo con il bordo solid, il problema è che mi vengono 2 colori alternati nonostante io abbia messo bordercolor=black in <table>. Il codice html è
codice:
<div id="table"><table border=1 bordercolor = black CELLSPACING=0 cellpadding=0 width=900px > 
 <tr> 
 <td id="paragraph1" width=200px height=30px></td> 
 <td id="paragraph1" width=500px height=30px>seconda cella</td> 
 <td id="paragraph1" width=200px height=30px></td> 
 </tr> 
 <tr> 
 <td id="paragraph1" width=200px height=190px>c</td> 
 <td id="paragraph1" width=500px height=190px></td> 
 <td id="paragraph1" width=200px height=190px>seconda cella</td> 
 </tr> 
 <tr> 
 <td id="paragraph1" width=200px height=30px></td> 
 <td id="paragraph1" width=500px height=30px>quarta cella</td> 
 <td id="paragraph1" width=200px height=30px></td> 
 </tr> 
 <tr> 
 <td id="paragraph1" width=200px height=190px>prima cella</td> 
 <td id="paragraph1" width=500px height=190px></td> 
 <td id="paragraph1" width=200px height=190px>seconda cella</td> 
 </tr> 
</table> 
</div> 


mentre il css è 

#table {border-collapse:collapse
 border-color: black
border-style:solid;
border-width: 1px}

#paragraph1 {border-color: black
border-style:solid;
border-width: 1px}
Dove è che sbaglio?