Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 CSS 文件中有这个
h1, h2, h3, h4 { color: red; }
有没有办法用一个语句来选择所有标题,比如
h* { color: red; }
在标准 CSS 中无法做到这一点。您将不得不使用逗号分隔的列表。
但是,您可以使用 SASS 和 LESS 等样式表语言来完成此操作。