使用 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>

输出

最新更新于: 22-6-2020

340 人次浏览

助力 职业生涯

通过完成课程获得认证

开始学习
广告