diff --git a/docs/css.md b/docs/css.md index 8ba95840..313d5e98 100644 --- a/docs/css.md +++ b/docs/css.md @@ -1977,6 +1977,16 @@ ul > li:not(:last-child)::after { 使列表项看起来像一个真实的逗号分隔列表,使用 `:not()` 伪类,最后一项不会添加逗号 +### 表格中数字使用制表数字 + +```css +.revenue { + font-variant-numeric: tabular-nums; +} +``` + +表格中一列数字列对其 + 另见 ---------