Less-CSS预处理语言快速入门

简介: Less-CSS预处理语言快速入门

Less css预处理语言

特性:变量、继承、运算、函数

http://lesscss.cn/

编译器

1、koala

http://koala-app.com/index-zh.html

https://github.com/oklai/koala

2、sublime插件

less       # 语法高亮
less2css   # 保存自动生成同名的css文件

需要安装node环境+node插件

npm install -g less
npm install -g less-plugin-clean-css 

报错:

less2css error: `lessc` is not available

重启sublime

配置保存时不进行压缩

{
  "minify": false
}

语法

1、注释

/**/  # css中的注释
//    # 编译时会被自动过滤

2、变量

以@开头,例如:

@变量:值;

@text_with: 200px;
.box{
    width: @text_with;
    heigth: @text_with;
    background-color: yellow;
}

编译结果

.box {
  width: 200px;
  height: 200px;
  background-color: yellow;
}

3、混合

类似其他语言中的函数

.border{
    border: solid 5px pink;
}
.box-border{
    .border;
    width: 200px;
    height: 200px;
    background-color: green;
}

编译结果

.border {
  border: solid 5px pink;
}
.box-border {
  border: solid 5px pink;
  width: 200px;
  height: 200px;
  background-color: green;
}

4、混合带参数

.box{
    width: 200px;
    height: 200px;
    background-color: yellow;
    .border(green);   // 混合
}
.border(@color){
    border: solid 5px @color;
}

编译结果

.box {
  width: 200px;
  height: 200px;
  background-color: yellow;
  border: solid 5px green;
}

5、混合默认参数

.box{
    width: 200px;
    height: 200px;
    background-color: yellow;
    .border();   
}
.border(@color: 10px){
    border: solid 5px @color;
}

编译结果

.box {
  width: 200px;
  height: 200px;
  background-color: yellow;
  border: solid 5px 10px;
}

6、混合示例

.box{
    width: 200px;
    height: 200px;
    background-color: green;
    .border-radius()
}
.border-radius(@radius: 5px){
    -webkit-border-radius: @radius;
    -moz-border-radius: @radius;
    border-radius: @radius;
}

编译结果

.box {
  width: 200px;
  height: 200px;
  background-color: green;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

7、匹配模式

类似其他语言中的if语句

@charset "utf-8";
.box-line(top, @boder-width:5px){
    border-top: solid @boder-width red;
}
.box-line(bottom, @boder-width:5px){
    border-bottom: solid @boder-width red;
}
.box-line(left, @boder-width:5px){
    border-left: solid @boder-width red;
}
.box-line(right, @boder-width:5px){
    border-right: solid @boder-width red;
}
// 不管匹配到谁,以下样式都会被输出
.box-line(@_, @boder-width:5px){
    background-color: green;
    width: 200px;
    height: 200px;
}
.box{
    .box-line(right)
}

编译结果

@charset "utf-8";
.box {
  border-right: solid 5px red;
  background-color: green;
  width: 200px;
  height: 200px;
}

8、运算

支持 + - * /

@default-width: 20px;
.box{
    width: @default-width + 20;
}

编译结果

.box {
  width: 40px;
}

9、嵌套

.list{
    list-style: none;
    width: 500px;
    margin: 30px auto;
    li{
        height: 20px;
    }
    a{
        float: left;
        // & 表示上一层选择器
        &:hover{
            color: red;
        }
    }
}

编译效果

.list {
  list-style: none;
  width: 500px;
  margin: 30px auto;
}
.list li {
  height: 20px;
}
.list a {
  float: left;
}
.list a:hover {
  color: red;
}

10、@arguments

获取所有参数

.box{
    .border-color();
}
.border-color(@width: 30px, @color: red){
    border: solid @arguments;
}

编译效果

.box {
  border: solid 30px red;
}

11、避免编译

.box{
    height: calc(20px + 10px);
    // 避免编译
    width: ~'calc(20px + 10px)';
}

编译效果

.box {
  height: calc(20px + 10px);
  width: calc(20px + 10px);
}

12、!important

.box{
    height: 20px !important;
}

编译效果

.box {
  height: 20px !important;
}

12、文件导入

hi.css

.hi{
    height: 20px;
}

hello.less

.hello{
    width: 20px
}

main.less

// 引入less文件
@import "hello";
// 引入 css文件
@import "hi.css";
// 引入 css文件 转为 less
@import (less) "hi.css";

编译效果

main.css

@import "hi.css";
.hello {
  width: 20px;
}
.hi {
  height: 20px;
}


相关文章
|
6月前
|
前端开发 JavaScript
webpack成长指北第7章---webpack的css\less\scss样式打包
webpack成长指北第7章---webpack的css\less\scss样式打包
96 0
|
6月前
|
敏捷开发 人工智能 前端开发
让你爽到飞起的【懒人插件AutoScssStruct4Vue】VSCode根据template的标签目录自动一键生成CSS/SCSS/LESS结构,敏捷开发必备插件!!!
让你爽到飞起的【懒人插件AutoScssStruct4Vue】VSCode根据template的标签目录自动一键生成CSS/SCSS/LESS结构,敏捷开发必备插件!!!
|
11月前
|
前端开发
解决VScode在保存less文件时,自动生成对应的css文件以及安装Easy less之后,计算式子不显示结果的问题
解决VScode在保存less文件时,自动生成对应的css文件以及安装Easy less之后,计算式子不显示结果的问题
|
1月前
|
前端开发 开发者
CSS预处理器Less、Scss
【10月更文挑战第3天】
114 59
|
6月前
|
前端开发 JavaScript
【实现js和css互通、共享常量参数值】js如何获取CSS/SCSS/LESS的常量、CSS/SCSS/LESS又是如何获取js的值(或者说js是如何主动推送参数给CSS使用的)?
【实现js和css互通、共享常量参数值】js如何获取CSS/SCSS/LESS的常量、CSS/SCSS/LESS又是如何获取js的值(或者说js是如何主动推送参数给CSS使用的)?
|
5月前
|
存储 前端开发 编译器
【CSS预处理语言】less快速入门
【CSS预处理语言】less快速入门
69 1
expectedcss(css-rcurlyexpected),使用:变红怎么整,给他改成less就可以了
expectedcss(css-rcurlyexpected),使用:变红怎么整,给他改成less就可以了
|
6月前
|
XML 前端开发 数据格式
探索CSS预处理器:Sass、Less与Stylus
探索CSS预处理器:Sass、Less与Stylus
|
6月前
|
前端开发
【专栏:CSS进阶篇】CSS变量与预处理器(Sass/Less)
【4月更文挑战第30天】本文探讨了CSS变量和预处理器Sass的使用,以提升开发效率和代码可维护性。CSS变量通过--*语法定义,可在文档范围内重用,减少冗余,提高可维护性。Sass预处理器引入了变量、嵌套规则、混合和函数等特性,使CSS编写更简洁、可维护。Sass变量使用$符号定义,支持嵌套规则和混合,如定义border-radius混合以减少重复代码。Sass的高级功能使其成为强大工具。
141 0
|
6月前
|
前端开发
【专栏】在 create-react-app 中集成 less/sass 预处理器和 react-css-modules 的方法
【4月更文挑战第29天】本文介绍了在 create-react-app 中集成 less/sass 预处理器和 react-css-modules 的方法。首先,通过 `npm` 安装 less 或 sass 依赖,然后修改 `config-overrides.js` 配置文件以支持 less/sass 编译。接着,详细阐述如何使用 less/sass 编写样式。再者,安装 react-css-modules 并配置 webpack,使能样式模块化。最后,展示了如何结合使用 less/sass 和 react-css-modules,以提升前端开发的效率和代码质量。
484 0

热门文章

最新文章