码迷,mamicode.com
首页 > 其他好文 > 详细

Less 转义的用法

时间:2020-10-27 11:14:26      阅读:20      评论:0      收藏:0      [点我收藏+]

标签:版本   允许   api   esc   href   http   需要   size   内容   

转义(Escaping)允许你使用任意字符串作为属性或变量值。任何 ~"anything" 或 ~‘anything‘ 形式的内容都将按原样输出,除非 interpolation。

@min768: ~"(min-width: 768px)";
.element {
@media @min768 {
font-size: 1.2rem;
}
}
编译为:

@media (min-width: 768px) {
.element {
font-size: 1.2rem;
}
}
注意,从 Less 3.5 开始,可以简写为:

@min768: (min-width: 768px);
.element {
@media @min768 {
font-size: 1.2rem;
}
}
在 Less 3.5+ 版本中,许多以前需要“引号转义”的情况就不再需要了。www.dgvast.cn

Less 转义的用法

标签:版本   允许   api   esc   href   http   需要   size   内容   

原文地址:https://www.cnblogs.com/96net/p/13879749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!