Html tables

I am building a table in html seem to be drawing a blank on sizing the cell and the border around my <td>

I have to remove the border around the whole table in order to remove the border around the td but I want the table border.

Any advice greatly appreciated!

Don’t use the table’s border attribute. Use CSS borders instead.

Some CSS like:

table {
border : 10px solid red;
}
td {
border : none;
}

Would set the TABLE border to 10px red and remove the TD border, I assume that is what you are asking for?