Labels and tables

A

Alex Vinokur

I would like to set labels within tables to go to some row or cell.

Is the way used below correct?

<TABLE>
<TBODY>

<a href="#label1">
<TR>
<a href="#label2">
<TD>
<a href="#label3">
Some text
</TD>
</TR>

</TBODY>
</TABLE>


--
=====================================
Alex Vinokur
mailto:[email protected]
http://mathforum.org/library/view/10978.html
news://news.gmane.org/gmane.comp.lang.c++.perfometer
=====================================
 
D

David Dorward

Alex said:
I would like to set labels within tables to go to some row or cell.

Is the way used below correct?

<snip>

No.

<ul>
<li><a href="#row1">Row 1</a></li>
<li><a href="#row2">Row 2</a></li>
<li><a href="#row3">Row 3</a></li>
</ul>

<table>
<thead><tr>
<th scope="col">This</th>
<th scope="col">That</th>
<th scope="col">Other</th>
</tr></thead>
<tbody>
<tr id="row1"><td>x</td><td>x</td><td>x</td></tr>
<tr id="row2"><td>x</td><td>x</td><td>x</td></tr>
<tr id="row3"><td>x</td><td>x</td><td>x</td></tr>
<tr id="row4"><td>x</td><td>x</td><td>x</td></tr>
</tbody>
</table>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top