a { text-decoration:none; } li { list-style:none; }
然而,有时候大家希望取消的样式不一定是默认样式,而是已经定义过的样式。这时候大家可以使用“unset”这个值来取消已经被定义的样式。
.button { background-color:red; color:white; border:none; } .cancel-button { background-color:unset; color:unset; border:unset; }
在上面的代码中,大家先定义了一个类按钮“button”,并为其设置了背景颜色、文字颜色和边框。然后大家又定义了一个类“cancel-button”,并在其中使用了属性“unset”来取消前一个类“button”中定义的样式。这样一来,“cancel-button”类中的背景颜色、文字颜色和边框都会被取消,回到默认值。