Forum Moderators: not2easy
It's simple enough - if it's only one table, all you need to do is use the tag names in your css.
eg.
table {
width: 400px;
height: 500px;
background-color: black;
]
td {
border:1px solid red;
}
Stuff like that.
I hope this helps.
empty-cells:show;
TABLE {
border-collapse: collapse;
border: 2px solid;
} TD {
border-width: 1px;
border-style: solid dotted;
} ;)
You can be super clever and read the W3C article that shows you how to make CSS tables without the <table> tag!
[w3.org...]