如何覆盖内容 div 中的 CSS 类
我想在内容块中重新实现属性边距权。
这是内容 id css:
#content h2 {
margin-right:2px;
}
这是 bloc 类 css:
.bloc h2 {
margin-right:0px;
}
我想要“.bloc”css 的 margin-right 而不是“#content”css
I want to reimplement the property margin-right in a bloc whitin a content.
this is the content id css:
#content h2 {
margin-right:2px;
}
this is the bloc class css:
.bloc h2 {
margin-right:0px;
}
I want the margin-right of the ".bloc" css fires rather than the "#content" css
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试!重要,像这样:
Try !important, like this:
你可以尝试这个:
我不确定我是否完全理解你的问题,尤其是最后一句话......
You could try this :
I'm not sure I understood your question perfectly well, especially the last sentence...