较少的CSS重复类

时间:2014-01-10 06:28:26

标签: css css3 less

当我在chrome中检查我的结果时,我得到了一个重复的类。

.container .pos-title {
margin-top: 10px;
margin-bottom: 0px;
}
.container .pos-title {
margin-top: 10px;
margin-bottom: 0px;
}
当我在我的风格中使用它时,为什么我会看到这一点。

.container{
    .panel-body{
        padding: 5px;
    }

    .pos-title{
        margin-top: 10px;
        margin-bottom: 0px;
    }
}

1 个答案:

答案 0 :(得分:0)

使用Ctrl+f查找是否定义了另一个类似的CSS结构!