doc: update docs/css.md

This commit is contained in:
jaywcjlove 2024-10-03 14:20:53 +08:00
parent b0444f82bf
commit a69be1efba

View File

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