【发布时间】:2021-11-01 12:53:58
【问题描述】:
我在研究 tailwind CSS 排版插件的输出 CSS 代码时发现了这个
https://unpkg.com/@tailwindcss/typography@0.4.1/dist/typography.css
在第 33 行
.prose ol[type="A" s] {
--list-counter-style: upper-alpha;
}
.prose ol[type="a" s] {
--list-counter-style: lower-alpha;
}
终于有了这个小s,什么意思?
如果我将 VSCode 语法更改为 SCSS,它会输出错误
为什么会这样?
【问题讨论】:
标签: css sass tailwind-css