重新组织CSS代码的利器——Styleneat(转)
我们编码的代码往往不够规范,虽然52css.com提供了很多的思路和经验,但依然无法改变代码杂乱的现象。今天向大家介绍重新组织CSS代码的利器——Styleneat。
Styleneat 能够把 CSS 的选择器(selectors),子选择器( sub-selectors)和属性(properties)按照层式结构化重新组织,这样使得程序员更加容易去定义页面区域和查看它们之间的关系。Styleneat 是一个能够帮你重新组织你 CSS 属性的免费服务。
Styleneat
比如它会把下面这段 CSS 代码
Example Source Code [www.52css.com]
id1 { width: 100px; }
id1 .class1 { background: #000; }
id1 .class1 a { text-decoration: none; color: #fff; }
id1 .class1 a span { text-indent: 10px; }
id2 { width: 200px; }
重新组织成:
Example Source Code [www.52css.com]
id1 { width: 100px; }
id1 .class1 { background: #000; }
id1 .class1 a { color: #fff; text-decoration: none; }
id1 .class1 a span { text-indent: 10px; }
id2 { width: 200px; }
Styleneat 提供三种使用方式:
Example Source Code [www.52css.com]
1、直接粘贴 CSS 代码。
2、上传一个 CSS 文件。
3、提供 CSS 文件的 URL 地址。
另外 Styleneat 还提供一些选项,如按照 CSS 选择的字母顺序排列,单行格式或者多行格式等。Styleneat 在 CSS 优化方面还是提供了比较多的帮助。
http://styleneat.com/
Example Source Code [www.52css.com]
id1 { width: 100px; }
id1 .class1 { background: #000; }
id1 .class1 a { text-decoration: none; color: #fff; }
id1 .class1 a span { text-indent: 10px; }
id2 { width: 200px; }
id1 .class1 { background: #000; }
id1 .class1 a { text-decoration: none; color: #fff; }
id1 .class1 a span { text-indent: 10px; }
id2 { width: 200px; }
Example Source Code [www.52css.com]
id1 { width: 100px; }
id1 .class1 { background: #000; }
id1 .class1 a { color: #fff; text-decoration: none; }
id1 .class1 a span { text-indent: 10px; }
id2 { width: 200px; }
id1 .class1 { background: #000; }
id1 .class1 a { color: #fff; text-decoration: none; }
id1 .class1 a span { text-indent: 10px; }
id2 { width: 200px; }
Example Source Code [www.52css.com]
1、直接粘贴 CSS 代码。
2、上传一个 CSS 文件。
3、提供 CSS 文件的 URL 地址。
2、上传一个 CSS 文件。
3、提供 CSS 文件的 URL 地址。
作者:网络小筑
个人网站:生活百科
本文版权所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
个人网站:生活百科
本文版权所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。