Skip to content
This repository has been archived by the owner on Jul 7, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (14 loc) · 130 Bytes

函数.md

File metadata and controls

20 lines (14 loc) · 130 Bytes

函数

语法:

@foo: 2;

p {
    margin: if(@foo > 0, 0, 10px);
}

编译后:

p {
  margin: 0;
}