前端之家收集整理的这篇文章主要介绍了
html – 如何覆盖内容div中的CSS类,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想重新实现
内容中的
属性margin-right.
这是内容id css:
#content h2 {
margin-right:2px;
}
这是集团类css:
.bloc h2 {
margin-right:0px;
}
我想要“.bloc”css的margin-right而不是“#content”css
试试!重要,像这样:
.bloc h2
{
margin-right:0px !important;
}
原文链接:https://www.f2er.com/html/226811.html