使用动态样式表语言有什么缺点吗?
我刚刚读过有关 {less} 的内容。你推荐吗?
I have just read about {less}. Do you recommend it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我刚刚读过有关 {less} 的内容。你推荐吗?
I have just read about {less}. Do you recommend it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果您在客户端执行此操作并且使用已禁用 js,则基于 javascript 的 CSS 会更少
编译器将无法工作,并且用户无法使用任何样式。因此,为了确保它正常工作,您必须在服务器端使用 Node.js。
由于必须编译动态 css,与静态样式表相比,它可能会使用额外的资源,因此如果您没有适当的缓存,这可能会占用一些额外的服务器时间。
If you are doing it clientside and the use has disabled js, the less css javascript-based
compiler would not work and no styling would be avaiable to the user. So to ensure it works you have to use Node.js on the server side.
As the dynamic css has to bee compiled it might use extra ressources compared to a static stylesheet, so if you do not have proper caching this could use some extra server time.