是否有一个好的 .Net CSS 聚合器可以组合样式表并缩小它们?
我想看看是否有一个开源/免费项目提供 CSS 管理器。我寻找这个主要是为了性能调整,并希望有一个现成的项目,而不是从头开始构建。我正在寻找的功能包括:
- 将多个 .css 文件合并为一个 css 文件
- 可选择缩小生成的 .css 文件
- 与 .Net 配合良好(用户控件、自定义处理程序等)
是否有一个项目可以处理此问题?
I am looking to see if there is an open source/free project that provides a CSS manager. I am looking for this mainly for performance tweaking and hoping there is a readymade project rather than building from scratch. Features I am looking for include:
- Combines multiple .css files into a single css file
- Optionally minifies the resulting .css file
- Works well with .Net (a user control, custom handler, etc)
Is there a project out that that handles this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SquishIt 在组合/缩小方面做得很好,可能会引起兴趣
SquishIt does a great job combining / minifying and may be of interest
您可以尝试 YUICompressor for .Net 进行缩小。
我们在我当前的项目中使用它并且效果很好 - 它还支持缩小 Javascript。
对于聚合(将多个文件内联到一个文件中),我们最终推出了自己的文件,因为我们在 .Net 中找不到完全符合我们要求的东西。
You can try YUICompressor for .Net for the minifying.
We use this on my current project and it works well - it also supports minifying Javascript.
For the aggregating (inlining multiple files into a single file), we ended up rolling our own, as we couldn't find something in .Net that did exactly what we wanted.