


Preface: CSS preprocessing language
CSS preprocessing language can add more programming features to CSS and generate files with CSS as the target.
These languages can effectively improve programming efficiency, make CSS more concise, adaptable, and readable, and make projects easier to maintain.
This article will objectively analyze the similarities and differences between the current mainstream CSS preprocessing languages LESS, Sass, and Stylus from a developer's perspective using a horizontal comparison of tables.
Does not introduce the installation, compilation, etc. of these languages. By default, readers are already familiar with CSS and may have used at least one of the above CSS preprocessing languages.
Since the Sass language currently has two sets of grammar rules with ".sass" and ".scss" as file name suffixes, this article only introduces the versions after Sass3, which are represented by Scss.
Basic difference
*.less | *.scss | *.styl | |||||||||
| |||||||||||
can introduce less.js files into HTML files and introduce *.less files in the same way as *.css files, and compile them through the browser (which may consume a little performance). | Ruby needs to be installed first |
/*均支持CSS风格语法*/h1{ color:#000;} | ||
不支持 | /*支持不包含花括号与分号的编写风格,仅通过缩进表示嵌套*/h1 color: #000 | |
不支持 | /*支持省略冒号*/h1 color #000 |
/*以“@”开头*/@maxWidth:1024px; | /*以“$”开头*/$maxWidth:1024px; | /*可以以“$”开头,也可无前缀符号直接声明变量*/maxWidth=1024px; |
定义变量时,以冒号“:”分隔变量名与变量值 | 以“=”分隔变量名与变量值 | |
与其它语言作用域概念雷同,向上冒泡查找变量 | 无全局变量的概念,后定义的同名变量会完全覆盖先定义的变量 | 同LESS |
Mixins
Mixins are the most powerful feature in the language in the CSS preprocessor.
可以无需特别声明,直接调用某一class或id选择器名即可重用该选择器内属性 | 定义混合需要以“@mixin”开头。引用混合需要以“@include” 开头 | 无需前缀 |
均可定义参数与设置参数默认值 | ||
/*声明混合*/.setColor(@mainC:#000){ color:@mainC;}/*直接以默认值调用混合*/.sBox{ .setColor();}/*调用混合且传入自定义参数值*/.bBox{ .setColor(#fff);} | /*声明混合*/@mixin setColor($mainC:#000){ color:$mainC;}/*直接以默认值调用混合*/.sBox{ @include setColor();}/*调用混合且传入自定义参数值*/.bBox{ @include setColor(#fff);} | /*声明混合*/setColor(mainC=#000){ color:mainC;}/*直接以默认值调用混合*/.sBox{ setColor();}/*调用混合且传入自定义参数值*/.bBox{ setColor(#fff);} |
/*编译成CSS后*/.sBox{ color:#000;}.box{ color:#fff;} |
嵌套语法是相同的,可以通过大括号“{}”之间的层次关系实现嵌套。也可以使用“&”符号来引用父选择器。 | ||
div{ margin:10px 5px; a{ color:red; &:hover{ color:blue; } }} | ||
div{ margin:10px 5px;}div a{ color:red;}div a:hover{ color:blue;} |
无需明确的前缀 | 使用“@extend”开始,后面紧跟被继承的选择器 | |
/*继承示例*/.block{ display:block; margin:10px;}p{ .block; padding:5px;} | /*继承示例*/.block{ display:block; margin:10px;}p{ @extend .block; padding:5px;} | |
/*编译成CSS,相同样式依旧会在每个选择器中重复出现*/.block{ display:block; margin:10px;}p{ display:block; margin:10px; padding:5px;} | /*编译成CSS,相同样式会被合并*/.block,p{ display:block; margin:10px;}p{ padding:5px;} |
条件语句
使用关键字“when”实现条件语句 | 可以使用@if、@else、@else if语句实现判断 | 与其它编程语言类似,不过可以省略大括号 |
@type: link;.mixin(@type) when ( @type == link ){ color:blue;} .mixin(@type) when not ( @type == link ){ color:black;} | $type: link;p { @if $type == link { color: blue; } @else { color: black; }} | type: link;p{ if type==linkcolor:blue; else color:black;} |
/*编译后的CSS*/p {color:blue;} |
循环语句
通过when模拟循环功能 | 使用@for关键字,配合“from”和“through” | 使用for/in对表达式进行循环 |
.funClass (@i) when (@i>0){ .item-@{i}{ width:2em*@i;}/*递归*/.funClass(@i-1);}/*停止循环*/.funClass (0) {}/*输出*/.funClass (3); | @for &i from 1 through 3{ .item-#{$i} { width:2em*$i; }} | for i in 1 2 3 .item-{i} width 2em*i |
/*编译后的CSS*/.item-1{ width:2em;}.item-2{ width:4em;}.item-3{ width:6em;} | ||
还支持each循环语句、while循环语句 |
综合对比
- 均具有“变量”、“混合”、“嵌套”、“继承”、“颜色混合”五大基本特性;
- Scss和LESS语法较为严谨,LESS要求一定要使用大括号“{}”,Scss和Stylus可以通过缩进表示层次与嵌套关系;
- Scss无全局变量的概念,LESS和Stylus有类似于其它语言的作用域概念;
- Scss和Stylus就具有类似其它语言的条件语句、循环语句等,而LESS需要通过When等关键词模拟这些功能;
- Sass是基于Ruby语言的,而LESS和Stylus可以基于NodeJS NPM下载相应库后进行编译;
- 使用LESS时,还可以在引用它的HTML文件中引入从官网下载的“less.js”文件,就可以通过浏览器进行解析。

C语言和Python是两种常用的编程语言,它们在许多方面有着明显的异同。本文将从语法、性能、易用性等方面对C语言和Python进行详细比较,并提供具体的代码示例来展示它们之间的差异。语法方面的异同:C语言是一种面向过程的编程语言,语法相对严谨和繁琐,需要开发者自行管理内存和数据类型。而Python是一种高级语言,语法简洁易读,无需显式的声明变量类型。示例代码

sass全称“Software as a service”,意思为“软件即服务”;它是一种软件部署模式,第三方供应商在云基础设施上构建应用程序,并以订阅的形式,通过互联网向客户提供这些应用程序,不要求客户预先建设底层基础设施。这意味着软件可以在任何有互联网连接和网络浏览器的设备上访问,而不像传统软件那样只能在本地机器上安装。

C++和C语言是两种流行的编程语言,它们在很多方面都相似,但也有许多显著的差异。本文将深入探讨C++和C语言的异同点,并通过具体的代码示例来说明它们之间的差异。一、基本语法和结构差异1.1数据类型定义在C语言中,定义变量时需要先声明数据类型,例如:intnum;而在C++中,可以在定义变量的同时进行初始化,例如:intnum=10;1.2函数定义

Golang和Go的异同:一文读懂作为一种开源的编程语言,Go于2007年由Google公司开发出来,被广泛用于构建高效、可靠、简洁的软件。Go语言是基于C语言的编程语言,但它具有更加简洁的语法和更强大的并发支持。然而,Go语言也有一个别名,即Golang,这导致很多人认为它们是两种不同的语言。那么Golang和Go到底是同

vue创建项目时使用的sass是强化css辅助工具的意思,是对css的扩展;sass是由buby语言编写的一款css预处理语言,和html有一样严格的缩进风格,和css编写规范相比是不使用花括号和分号的。

C语言和Python是两种非常流行的编程语言,它们在各自的领域具有独特的优势。本文将深入探讨C语言和Python之间的异同,并通过具体的代码示例进行比较。1.语法和结构差异首先,让我们看一下C语言和Python的语法和结构之间的差异。C语言示例:#includeintmain(){inta=10;

C语言与Python是两种广泛使用的编程语言,在软件开发领域具有重要地位。本文将从语法结构、数据类型、面向对象、函数等方面探讨C语言和Python之间的异同点,并通过具体的代码示例来展示它们之间的差异和联系。首先,我们从语法结构入手来比较C语言和Python。C语言是一种结构化的语言,代码结构清晰,使用大括号来区分不同的代码块。而Python则是一种脚本语言

vue工程编译sass错误的解决办法:1、使用镜像源“cnpm install node-sass sass-loader --save-dev”安装sass;2、在“package.json”中更改“sass-loader”版本为“"sass-loader": "^7.3.1",”;3、在页面中直接使用或者用@代替src即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
