On 12/19/05, Terrence Wood <[EMAIL PROTECTED]> wrote:
> how would/do you markup the source attribution for data tables when there
> is already a caption?

How about using the <tfoot> element? You could code it as:

<table>
        <thead>
                <tr>
                        <th>Summary of Key Indicators</th>
                </tr>
        </thead>
        <tfoot>
                <tr>
                        <td>Source: <cite>Foo Corp 2005</cite></td>
                </tr>
        </tfoot>
        <tbody>
          ... table content ...
        </tbody>
</table>

The <tfoot> is always displayed at the bottom of the table and can
also be used in a 'scrolling content, fixed header+footer' table
setup.

hth,
Andrew.

Reply via email to