如何在一次声明中设置 CSS margin 属性?


 margin 属性定义 HTML 元素周围的空间。可以使用负值来重叠内容。它为使用一个声明设置 margin 属性指定了一个速记属性。

示例

您可以尝试运行以下代码来设置边距

<html>
   <head>
   </head>
   <body>
      <p style = "margin: 20px; border:2px solid yellow;">
         All four margins will be 20px
      </p>
      <p style = "margin: 15px 4% -10px; border:2px solid red;">
         Top margin will be 15px, left and right margin will be 4% of the total width of the document, bottom margin will be -10px
      </p>
   </body>
</html>

更新时间:03-Feb-2020

238 次观看

职业起步

完成课程以获得证书

开始
广告