margin-bottom

**margin-bottom** CSS 属性设置元素底部的 边距区域。正值将其放置得离其邻居更远,而负值将其放置得更近。

试一试

The effect of the CSS margin-bottom property on the element box

此属性对替换内联元素(如<span><code>)没有影响。

语法

css
/* <length> values */
margin-bottom: 10px; /* An absolute length */
margin-bottom: 1em; /* relative to the text size */
margin-bottom: 5%; /* relative to the nearest block container's width */

/* Keyword values */
margin-bottom: auto;

/* Global values */
margin-bottom: inherit;
margin-bottom: initial;
margin-bottom: revert;
margin-bottom: revert-layer;
margin-bottom: unset;

margin-bottom 属性被指定为关键字 auto,或 <length>,或 <percentage>。其值可以为正、零或负。

<length>

边距的大小,以固定值表示。

<percentage>

边距的大小,以百分比表示,相对于包含块的内联大小(在水平语言中为宽度,由writing-mode 定义)。

auto

浏览器选择一个合适的值来使用。请参阅margin

正式定义

初始值0
应用于所有元素,除了具有除 table-captiontableinline-table 之外的表格display 类型的元素。它也适用于::first-letter
继承
百分比指的是包含块的宽度
计算值指定的百分比或绝对长度
动画类型一个长度

正式语法

margin-bottom = 
<length-percentage> |
auto

<length-percentage> =
<length> |
<percentage>

示例

设置正负底部边距

HTML

html
<div class="container">
  <div class="box0">Box 0</div>
  <div class="box1">Box 1</div>
  <div class="box2">Box one's negative margin pulls me up</div>
</div>

CSS

用于 div 的 CSS,用于设置 margin-bottom 和高度

css
.box0 {
  margin-bottom: 1em;
  height: 3em;
}
.box1 {
  margin-bottom: -1.5em;
  height: 4em;
}
.box2 {
  border: 1px dashed black;
  border-width: 1px 0;
  margin-bottom: 2em;
}

一些用于容器和 div 的定义,以便更清楚地看到边距的效果

css
.container {
  background-color: orange;
  width: 320px;
  border: 1px solid black;
}
div {
  width: 320px;
  background-color: gold;
}

结果

规范

规范
CSS 盒子模型模块级别 3
# margin-physical

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅