I'm coding a responsive & semantic HTML5 webpage. However, I've just hit a snag:
There's a piece of design that would normally be respresented as tabular data within the HTML (i.e. a heading and corresponding data) but it would be impossible to use tables in this case due to the visual design/layout requirements.
Is there a HTML alternative to using tables that can, semantically speaking, represent tabular well with assistive technologies e.g. screenreaders?
At the moment I'm running with:
<p>
<strong>Heading 1</strong>: <span>Data 1</span>
</p>
<p>
<strong>Heading 2</strong>: <span>Data 2</span>
</p>
Not the best solution, but it does allow me to fulfill the visual design requirements.
Many thanks.