美团小程序开发 美团APP开发
美团系统开发找廖经理【开发软件请联系上方】开发公司,美团小程序开发,美团APP系统软件开发,美团APP软件开发,美团APP系统开发,美团软件系统开发,美团小程序开发,美团开发模板
3、命名空间和作用域在LESS的语法中,我们可以指定命名空间,实现在一个盒子中层级嵌套式的编写。下面案例中,.box就是命名空间,里面的img、.gray都是这个空间下的样式,调取的话需要.box > .gray。
//->LESS代码 .box { width: 100px; height: 100px; img { width: ; height: ; } .gray { color: #eee; } &:hover { background: green; } } #nav { .box; } #header { .box > .gray; } //->编译为CSS的结果 .box { width: 100px; height: 100px; } .box img { width: ; height: ; } .box .gray { color: #eee; } .box:hover { background: green; } #nav { width: 100px; height: 100px; } #nav img { width: ; height: ; } #nav .gray { color: #eee; } #nav:hover { background: green; } #header { color: #eee; }展开全文