较少CSS继承帮助

时间:2011-03-10 19:03:25

标签: css inheritance less

我试图通过使用LESS来简化我的CSS创建。到目前为止这么好,但是我遇到了一个问题,我的代码看起来像是这样:

#content {

    h1 {
        font-size:20px;
    }

    h2 {
        font-size:10px;
    }
}

现在我还想将font-weight:normal;应用于h1和h2,如何在不遵守规则的情况下执行此操作?

3 个答案:

答案 0 :(得分:2)

h1, h2
{
    font-weight:normal;
}

答案 1 :(得分:0)

尝试这样

#content {

    h1 {
        font-size:20px;
    }

    h2 {
        font-size:10px;
    }
    h1, h2
    {
        font-weight:normal;
    }
}

答案 2 :(得分:0)

#content {
  font-weight:normal;
  h1 {
    font-size:20px;
  }

  h2 {
    font-size:10px;
  }
}

有时它会有所帮助。实际上并非在所有情况下。