← 返回首页
margin-top - CSS:层叠样式表 | MDN

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

margin-top

基线 广泛可用 *

自 2015年7月 起,此特性已在主流浏览器中得到支持,可在大多数设备和浏览器版本中正常使用。

* 此特性的某些部分的支持程度可能有所不同。

margin-top CSS 属性用于设置元素的顶部外边距外边距区域。正值使它离相邻元素更远,而负值使它更靠近相邻元素。

本文内容

尝试一下

margin-top: 1em;
margin-top: 10%;
margin-top: 10px;
margin-top: 0;
<section id="default-example"> <div id="container"> <div class="row"></div> <div class="row transition-all" id="example-element"></div> <div class="row"></div> </div> </section>
#container { width: 300px; height: 200px; display: flex; align-content: flex-start; flex-direction: column; justify-content: flex-start; } .row { height: 33.33%; display: inline-block; border: solid #ce7777 10px; background-color: #2b3a55; flex-shrink: 0; } #example-element { border: solid 10px #ffbf00; background-color: #2b3a55; }

此属性对于可替换的内联元素没有效果,比如 <span><code>

语法

css
/* <length> 值 */ margin-top: 10px; /* 绝对长度 */ margin-top: 1em; /* 相对与文本的大小 */ margin-top: 5%; /* 相对于最近的块容器的宽度 */ /* 关键字值 */ margin-top: auto; /* 全局关键字值 */ margin-top: inherit; margin-top: initial; margin-top: revert; margin-top: revert-layer; margin-top: unset;

margin-top 属性可以用关键字 auto、<length> 或 <percentage> 来设置。其值可以是正值、负值或零。

<length>

设置固定边距大小。

<percentage>

相对于包含块的内联尺寸(对于竖排语言则是宽度,这由 writing-mode 定义)的百分比边距大小。

auto

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

形式语法

margin-top =
<length-percentage> |
auto |
<anchor-size()>

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

<anchor-size()> =
anchor-size( [ <anchor-name> || <anchor-size> ]? , <length-percentage>? )

<anchor-name> =
<dashed-ident>

<anchor-size> =
width |
height |
block |
inline |
self-block |
self-inline
此语法反映了基于 CSS Anchor Positioning Module Level 1, CSS Box Model Module Level 4, CSS Values and Units Module Level 4 的最新标准。并非所有浏览器都已实现全部内容。有关支持信息,请参阅浏览器兼容性

示例

将上边距设置为正值和负值

css
.content { margin-top: 5%; } .sidebox { margin-top: 10px; } .logo { margin-top: -5px; } #footer { margin-top: 1em; }

规范

规范
CSS Box Model Module Level 3
# margin-physical

浏览器兼容性

启用 JavaScript 以查看此浏览器兼容性表。

参见