首页  >  文章  >  web前端  >  CSS 中 margin 属性的使用

CSS 中 margin 属性的使用

WBOY
WBOY转载
2023-08-31 21:25:111068浏览

CSS 中 margin 属性的使用

margin 属性定义 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>

以上是CSS 中 margin 属性的使用的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除