direction.less:Less.js RTLLTR规则
无方向 Less.js RTL / LTR mixins规则。 下载 -版本0.1.0 -大师分支 例子 更少的代码: @direction: rtl; // use `rtl` or `ltr` @import "direction.less"; body { .direction(); } .float { .float(); } .box { display: inline-block; .margin-left(4px); .padding-right(1em); } 输出 RTL body { direction: rtl; } .float { float: right; } .box { display: inline-block; margin-right: 4px; padding-left: 1em; } 轻铁 body {