In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
小编给大家分享一下VSCode中怎么省略配置来快速使用Less,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
Less
前端页面的制作过程中,如果页面内元素较多,并且层级结构较为复杂,会导致我们写出来的CSS特别的冗余,并且不容易进行维护。
所以对于CSS也有不少的扩展,比如Less,Sass等CSS预处理器。
一般而言,在使用这些CSS扩展语言时,会先使用npm进行下载,然后在webpack当中进行配置使用。
虽然也可以直接导入less到浏览器中,不过要先引入clean-css 插件。
但是如果想要以最快的方式使用less进行样式编写,我找到的方法是使用vs code中的插件,让vs code直接帮你编译完成一个css。这种方式也是我目前比较常用的。
Easy Less
这里推荐一款叫做Easy Less的插件。
Easy Less直接在vs code的扩展商店中安装后即可生效,现在我们可以创建一个less文件,然后在里面使用less的方式编写样式代码,保存后即可发现在less同级文件夹中会生成一个相同名称的css文件。
Less文件中内容:
@setColor:{ 1: #ff0000; 2: #ff0; 3: #f0f; 4: #0ff; 5: #00f;}#app { .ul { each(@setColor, { .li@{key} { background-color: @value; width: 100px; height: 20px; } }) }}
生成的CSS代码:
#app .ul .li1 { background-color: #ff0000; width: 100px; height: 20px;}#app .ul .li2 { background-color: #ff0; width: 100px; height: 20px;}#app .ul .li3 { background-color: #f0f; width: 100px; height: 20px;}#app .ul .li4 { background-color: #0ff; width: 100px; height: 20px;}#app .ul .li5 { background-color: #00f; width: 100px; height: 20px;}
这样在引入页面时,就可以直接引入此CSS文件,而不必做多余的转换工作了。 其实在vs code当中,不止有less的简化工具,sass的工具插件同样也存在其中,大家如果感兴趣也都可以试试。
以上是"VSCode中怎么省略配置来快速使用Less"这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.