手动创建CSS到LESS中
是否有工具可用于将手动创建的 CSS 文件转换为嵌套的、优化良好的 LESS 文件?
Is there a tool available for converting a manually created CSS file into a nested, well optimized LESS file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简短的回答:不,自己做。
长答案:你的 CSS 文件应该使用 LESS 自动编译。将 .css 重命名为 .less,然后您可以通过添加 LESS 代码来逐步改进您的 CSS 文件。是的,这可能是一条缓慢的路,但这是一条很好的路。
Short answer: No. Do it yourself.
Long answer: Your CSS file should compile automatically with LESS. Rename .css to .less, then you can progressively improve your CSS file by adding LESS code. Yes it may be the slow way, but it is a great way to go.
不,是时候卷起袖子,将您拥有的任何 css 重新创建到 .less 文件中了。
如果您正在构建一个框架,我强烈建议您查看this,因为它包含许多有用的变量和混合对于 .less 文件。
请记住,虽然 {less} 很棒,但您不应该不要使用它进行部署。我建议仅使用 .less 文件进行开发,并将它们编译成缩小的 .css 文件以进行部署/生产。
No. Time to roll up your sleeves and re-create whatever css you have into .less files.
If you are building a framework, I highly suggest looking at this, as it contains many variables and mixins that are helpful for .less files.
Keep in mind that while {less} is awesome, you should not use it for deployment. I suggest using your .less files for development only, and compiling them into minified .css files for deployment/production.