天天看点

Less语言特性 - 注释

示例

// 单行注释

/**
* 多行
* 注释 
**/
.container {
    text-align: center;
    .header {
        font-weight: bolder;
        .left {
            float: left;
        }
        .right {
            float: right;
        }
    }
}