Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何忽略父 div 的样式
margin: 0 auto;
我想忽略 div 的这种样式而不将其嵌套在其父级之外。这在 CSS 中可能吗?
只需设置孩子的边距。这将覆盖父母的CSS。CSS 以分层方式工作,其中使用最具体的 CSS(“最接近”元素,因为没有更好的术语)。
是的,只为 div 设置一个值,例如
.parent { margin: 0 auto; } .other-Div { margin: 0; }