0

我已经为inputHTML 中的元素定义了一种样式,例如

input { font-family: Cambria; font-size: 13pt; }

所以它默认适用于input我在页面中编写的所有元素。

现在我想要一个input没有样式的特定元素;我可以这样做吗?

4

1 回答 1

0

元素选择器的优先级低于类选择器,因此您只需添加一个类:

.special-input { font-family: sans-serif; font-size: 10pt; }
于 2013-02-23T06:09:15.277 回答