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.
我目前在一些小项目中使用 Twitter 的 Bootstrap。我将所有 CSS 更改放在一个新.css文件中。但是我怎样才能取消原始的 CSS 属性bootstrap.css呢?
.css
bootstrap.css
已经厌倦了将其设置为0,但这不适用于所有属性。
0
.example { color: 0; }例如不起作用。
.example { color: 0; }
有任何想法吗?
最好指定自己的值,因为将其设置为默认值可能会很棘手:
属性的初始值color取决于用户代理
color
尝试这个:
.example { color:inherit; }