Re: Question refused, where do I send validator questions ?

> On Feb 25, 2021, at 8:40 AM, Colin Hinson <Colin@blunham.com> wrote:
> 
> I get errors due to blank rows and try as I might, I cannot see how to fix these errors, as having anything but a blank row screws up the tables. The blank rows occur where two columns with "rowspan" in them overlap by more than one row. 

An alternative would be to use CSS Columns to layout the table across two or more visual columns. Here's a simple example:

<div style="columns: 2;">
<table border=1>
<tr><td>2021</td><td>Test</td></tr>
<tr><td>2021</td><td>Test</td></tr>
...
</table>
</div>

Live version at: https://jsfiddle.net/3fycqsv1/

The advantage of this setup is that the table is greatly simplified and more accessible (screen readers, copy-paste, etc).

- Chuck

Received on Monday, 1 March 2021 15:29:38 UTC