E-mail List Archives
Re: help with complex table
From: Beranek, Nicholas
Date: Sep 28, 2017 10:24AM
- Next message: Greg Gamble: "Re: Table Scope=row"
- Previous message: Schafer, Carmen: "Firefox visual focus indication"
- Next message in Thread: Angela French: "Re: help with complex table"
- Previous message in Thread: Angela French: "Re: help with complex table"
- View all messages in this Thread
Have you considered having the College Courses in a separate 2-way data table? "College Course" and "Credits" can be column headers in that case with each of the courses as row headers.
Another option I've considered is including what I just mentioned in the same table. Here is example code:
<tr>
<th scope="col">College Course</th>
<th scope="col">Credits</th>
</tr>
<tr>
<th scope="row">ACCT 110</th>
<td>5</td>
</tr>
The beauty of this technique is that is does not require the "headers" attribute or unique IDs for each header. Try it out!
Nick Beranek
Capital One
- Next message: Greg Gamble: "Re: Table Scope=row"
- Previous message: Schafer, Carmen: "Firefox visual focus indication"
- Next message in Thread: Angela French: "Re: help with complex table"
- Previous message in Thread: Angela French: "Re: help with complex table"
- View all messages in this Thread