CSS - margin-left 属性



CSS margin-left 属性设置元素左侧边距的宽度。

语法

margin-left: auto | length | percentage | initial | inherit;

属性值

描述
auto 浏览器自动设置左侧边距。默认值。
长度 使用长度单位(例如 px、em、rem 等)设置左侧边距空间。允许负值。
百分比 使用百分比值(例如 10%)相对于包含元素设置左侧边距空间。
initial 将属性设置为其默认值。
inherit 从父元素继承属性。

CSS margin-left 属性示例

以下示例说明了使用不同值的 margin-left 属性。

使用 auto 值的 margin-left 属性

要允许浏览器根据可用空间自动计算左侧边距,我们使用 auto 值。以下示例显示了这一点。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .container {
         padding-top: 40px;
         padding-bottom: 40px;
         height: 70px;
         width: 490px;
         border: 2px solid gray;
      }

      .box {
         background-color: lightblue;
         padding: 10px;
         text-align: center;
         width: 30%;
         margin-left: auto;
      }
   </style>
</head>

<body>
   <h2>
      CSS margin-left property
   </h2>
   <h4>
      margin-left: auto;
   </h4>
   <div class="container">
      <div class="box">
         This box has margin-left: auto
      </div>
   </div>

</body>

</html>

使用长度值的 margin-left 属性

要设置左侧边距,我们可以使用长度单位(例如 px、em、rem 等)指定边距大小。以下示例显示了这一点。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .container {
         padding-top: 40px;
         padding-bottom: 40px;
         height: 70px;
         width: 490px;
         border: 2px solid gray;
      }

      .props {
         background-color: lightblue;
         padding: 10px;
         text-align: center;
         width: 30%;
      }

      .box1 {
         margin-left: 80px;
      }

      .box2 {
         margin-left: 10em;
      }
   </style>
</head>

<body>
   <h2>
      CSS margin-left property
   </h2>
   <h4>
      margin-left: 80px;
   </h4>
   <div class="container">
      <div class="box1 props">
         This box has margin-left: 80px
      </div>
   </div>
   <h4>
      margin-left: 10em;
   </h4>
   <div class="container">
      <div class="box2 props">
         This box has margin-left: 10em
      </div>
   </div>

</body>

</html>

使用百分比值的 margin-left 属性

要设置左侧边距,我们可以使用百分比值(例如 10%(包含元素宽度的 10%))指定边距大小。以下示例显示了这一点。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .container {
         padding-top: 40px;
         padding-bottom: 40px;
         height: 90px;
         width: 490px;
         border: 2px solid gray;
      }

      .props {
         background-color: lightblue;
         padding: 10px;
         text-align: center;
         width: 30%;
      }

      .box1 {
         margin-left: 20%;
      }

      .box2 {
         margin-left: 50%;
      }
   </style>
</head>

<body>
   <h2>
      CSS margin-left property
   </h2>
   <h4>
      margin-left: 20%;
   </h4>
   <div class="container">
      <div class="box1 props">
         This box has margin-left: 20% 
         of the width of the container
      </div>
   </div>
   <h4>
      margin-left: 50%;
   </h4>
   <div class="container">
      <div class="box2 props">
         This box has margin-left: 50% 
         of the width of the container
      </div>
   </div>

</body>

</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
margin-left 1.0 6.0 1.0 1.0 3.5
css_properties_reference.htm
广告