Render Flow - Table accessibility basics
Read <table>
→Create TABLE node
Read <caption>
→Create CAPTION node as child
Read <thead>
→Create THEAD node as child
Read <tr>
→Create TR node as child
Read <th>
→Create TH node as child
Read <tbody>
→Create TBODY node as child
Read <tr>
→Create TR node as child
Read <td>
→Create TD node as child
The browser reads the table element and builds a tree with caption, header, body, rows, and cells. Screen readers use this structure to understand the table's meaning.