I have an ordinary HTML table:
| FAT |
... |
-
2020-12-13 08:38
Use the tag and style it following this guide. This way you only need to add a class (or inline style specification) to the element instead of each | in the table.
Caveats:
- Any row or cell styling will supersede column styling.
- The
tag only supports styling border, background, width and visibility (and their derivatives, such as background-color).
- The
border declaration does not work unless the has border-collapse: collapse;, and the behavior is inconsistent between browsers.
- The
visibility declaration does not work properly in Chrome due to a known bug.
|