如何覆盖内容div中的CSS类

时间:2010-05-30 20:32:13

标签: html css class override

我想在一个内容区域中重新实现属性margin-right。

这是内容id css:

#content h2 {
      margin-right:2px;
            }

这是集团类css:

    .bloc h2 {
margin-right:0px;
                }

我想要“.bloc”css的边距权限而不是“#content”css

2 个答案:

答案 0 :(得分:34)

尝试!重要,像这样:

.bloc h2 
{
    margin-right:0px !important;
}

答案 1 :(得分:8)

你可以试试这个:

#content .bloc h2
{
    margin-right: 0;
}

我不确定我完全理解你的问题,尤其是最后一句......