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 文件让我们说 p.one{color:red;}
并将其应用于不同的标签?如果可能的话,有没有办法我可以得到一个例子?
一堂课
那不是一堂课。它是一个带有一个选择器的规则集,该选择器由一个类型选择器和一个类选择器组成。
并将其应用于不同的标签?
不要指定元素类型。单独使用类选择器。
.one { color: red; }
使用易于使用的颜色名称创建一个类。
.redText { color: red; }