Shame文件
最后更新于:2022-04-01 10:47:24
另一个有意思的方面,由业内已流行的 [Harry Roberts](http://csswizardry.com/), [Dave Rupert](http://daverupert.com/) 和 [Chris Coyier](http://css-tricks.com/) 引起的,那就是将所有的CSS声明、Hack行为和我们不支持的行为放入一个 _shame file_。该文件命名为 `_shame.scss`,在所有文件之后被引用,放在所有样式表的最后。
~~~
/**
* Nav specificity fix.
*
* Someone used an ID in the header code (`#header a {}`) which trumps the
* nav selectors (`.site-nav a {}`). Use !important to override it until I
* have time to refactor the header stuff.
*/
.site-nav a {
color: #BADA55 !important;
}
~~~
## 扩展阅读
* [shame.css](http://csswizardry.com/2013/04/shame-css/)
* [shame.css - full .net interview](http://csswizardry.com/2013/04/shame-css-full-net-interview/)