how to embed a caption along the tables border in html/css?

  • Thread starter Thread starter arun s
  • Start date Start date
A

arun s

Guest
hi i want to embed a caption to the tables border along the top margin
----------caption--------------
| |
| |
| |
____________________

like the one above...pl give me some suggestion
 
If you don't care about standards, use the caption tag:

http://www.w3schools.com/TAGS/tag_caption.asp

If you do, simply create a table row with a single cell that spans all columns. For example, if you have a table with 3 columns:

<tr><td colspan="3">Here is the caption</td></tr>
 
Back
Top