Project: An Admin Dashboard Layout
Data tables, a persistent sidebar, status indicators and a dialog. The interface where dense information has to stay navigable.
Tabular data markup.
6 notes tagged
Data tables, a persistent sidebar, status indicators and a dialog. The interface where dense information has to stay navigable.
A table with eight columns cannot fit on a phone. Four patterns that keep the data usable, and the trade off each one makes.
A table a screen reader can read is a table with named headers. scope handles simple tables, headers and id handle the hard ones.
One cell covering several columns or rows. Simple to write, easy to get wrong, and the arithmetic has to balance or the whole grid tears.
Row groups give a table a header, a body and a summary. They are what make long tables printable, scrollable and understandable.
A table is for two dimensional data, never for layout. Learn the four core elements, the difference between th and td, and the test that tells you whe...