删除多个文件中的重复 CSS 声明
- 作者: 此人已葬终南山
- 来源: 51数据库
- 2022-10-21
问题描述
我希望从多个文件中删除重复的 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.
推荐阅读
热点文章
检查拆分键盘
0
带有“上一个"的工具栏和“下一个"用于键盘输入AccessoryView
0
Activity 启动时显示软键盘
0
UIWebView 键盘 - 摆脱“上一个/下一个/完成"酒吧
0
在 iOS7 中边缘滑动时,使键盘与 UIView 同步动画
0
我的 iOS 应用程序中的键盘在 iPhone 6 上太高了.如何在 XCode 中调整键盘的分辨率?
0
android:inputType="textEmailAddress";- '@' 键和 '.com' 键?
0
禁用 iPhone 中键盘的方向
0
Android 2.3 模拟器上的印地语键盘问题
0
keyDown 没有被调用
0
