Please help with html table tags? 10 points?

  • Thread starter Thread starter Fay B
  • Start date Start date
F

Fay B

Guest
I have to insert a table (text inside of it) that should float right page margin, should have 1 pixel wide border, cell padding of 5 pixels, 40% width of the page, border color should be white, background should be green or color value (125,178,116) and last within the table I have to insert text (which is a letter). Can you please tell me how to create tables without rows or columns please I am so confused at this. Thx
 
I don't think that's possible. If you want to display a table with sumthing inside, you need to use at least one row.

<table>
<tr>
<td>text you need to be inserted goes here</td>
</tr>
</table>
 
Back
Top