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 声明


基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01