mdn/html/2_html_tables/0_html_table_basics

0_html_table_basics

dz / mdn / html / 2_html_tables / 0_html_table_basics

Summary

HTML table basics

Node Tree

Nodes

table
content Table
children dont_use_table_page_layouts, table_is_rigid, tabular_data, cells_spanning_multi_rows_cols, data_rows_and_column (description)

tabular_data
content Tabular Data
parents table

data_rows_and_column
content Structured data made up of rows and columns
parents table

table_is_rigid
content The point of a table is that it is rigid
parents table

dont_use_table_page_layouts
content Don't use table for page layouts
children use_css_layouts (Use CSS instead)
parents table

use_css_layouts
content Use CSS for layouts
parents dont_use_table_page_layouts

tag_table
content <table>
children tag_td, tag_th, tag_tr
parents mdn/html/elements

tag_th
content <th>
children table_header, works_like_td
parents tag_table

tag_tr
content <tr>
children table_row
parents tag_table

tag_td
content <td>
children table_data
parents tag_table

table_header
content Table Header
parents tag_th

table_row
content Table Row
parents tag_tr

table_data
content Table Data / Table Cell
parents tag_td

works_like_td
content Works like <td>
parents tag_th

cells_spanning_multi_rows_cols
content Cells spanning multiple rows and columns
children colspan_rowspan
parents table

colspan_rowspan
content Colspan / rowspan
parents cells_spanning_multi_rows_cols

tag_col
content <col>
children span_attr, defines_styling_entire_column
parents mdn/html/elements, tag_colgroup

tag_colgroup
content <colgroup>
children tag_col
parents mdn/html/elements

defines_styling_entire_column
content Defines styling information for an entire column of data in one place.
parents tag_col

span_attr
content Span attribute
parents tag_col