Wikipedia:Manual of Style/Accessibility/Data tables tutorial: Difference between revisions
Content deleted Content added
Jroberson108 (talk | contribs) →Complex tables: Shorten first example code just to get point across. |
Jroberson108 (talk | contribs) →Layout of table headers: Finish example code and add output. |
||
Line 64:
<syntaxhighlight lang="wikitext">
{| class="wikitable plainrowheaders"
|-
! scope="row" style="font-size: larger;" | row header 1
|-
| data
|}
</syntaxhighlight>
</div>
<div style="display: inline-table;">
'''Produces:'''
{| class="wikitable plainrowheaders"
|-
! scope="row" style="font-size: larger;" | row header 1
|-
| data
|}
</div>
|