如何在一个声明中设置CSS边距属性?

 余量属性定义围绕一个HTML元素的空间。可以使用负值来重叠内容。它指定一种简写属性,用于在一个声明中设置边距属性。

示例

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

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