Remove duplicate CSS declarations across multiple files(删除多个文件中的重复 CSS 声明)
问题描述
我希望从多个文件中删除重复的 CSS 声明,以便更轻松地实施更改.有没有工具可以帮助我做到这一点?
I'm looking to remove duplicate CSS declarations from a number of files to make implementing changes easier. Is there a tool that can help me do that?
现在我面临这样的事情:
Right now I'm faced with something like this:
styles.css
#content {
width:800px;
height:1000px;
background: green;
}
styles.game.css
#content {
width:800px;
height:1000px;
background: blue;
}
我想要这个:
styles.css
#content {
width:800px;
height:1000px;
background: green;
}
styles.game.css
#content {
background: blue;
}
所有文件的总行数远远超过 10k,因此不能选择依赖手动编辑的技术.
The total number of lines across all files is well over 10k, so techniques that rely on manual editing aren't an option.
推荐答案
我为此专门编写了一个工具,名为 csscss.作为奖励,它还与 Sass 和 LESS 集成.试一试,如果您在 github 中遇到问题,请告诉我.
I wrote a tool specifically for this purpose called csscss. As a bonus it also integrates with Sass and LESS. Give it a shot and let me know if you have an issues in github.
这篇关于删除多个文件中的重复 CSS 声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:删除多个文件中的重复 CSS 声明
基础教程推荐
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
