CSS utility tables

Selectors * {} selects all elements p {} selects all <p> elements *.c {} select all elements where class=”c” ... [More]

CSS Cascade Order

CSS allows you to assign the same rule to the same element multiple times. I call these competing rules. Browsers use the cascading order to determin which rule in a set of competing rules gets applie... [More]

使用 HttpHandler 对 js/css 文件进行压缩

一、简介 在对网站进行开发时,为了给开发人员以好的可读性,需要对代码进行良好的排版,给变量起有意义的名字,进行合理的注释。然而,当网页呈现在用户面前时,之前提及的都不再重要,而另一方面,网页的呈现速度则变得很重要,这时候,又需要对代码进行压缩(以减少文件大小,节省网络带宽,从而加快了页面的加载时间),删掉不必要的空白字符,缩短变量名,删除注释等。如果网站上线后仍然一直处于持续更新状态,则每次在发布... [More]