使用 CSS 继承值来规定 margin 属性的作用
值为 inherit 的 margin 属性用于继承父元素中的元素。你可以尝试运行以下代码来实现margin: inherit;
实例
<!DOCTYPE html> <html> <head> <style> div { border: 2px solid blue; margin-left: 50px; } p.ex1 { margin-left: inherit; } </style> </head> <body> <p>Inheriting left margin from the parent element</p> <div> <p class = "ex1">This is demo text with inherited left margin.</p> </div> </body> </html>
输出
广告