CSS align-items property sets the align-self value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis . In Grid Layout, it controls the alignment of items on the Block Axis within their grid area .

The interactive example below demonstrates some of the values for align-items using grid layout.

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

句法

/* Basic keywords */
align-items: normal;
align-items: stretch;
/* Positional alignment */
/* align-items does not take left and right values */
align-items: center; /* Pack items around the center */
align-items: start; /* Pack items from the start */
align-items: end; /* Pack items from the end */
align-items: flex-start; /* Pack flex items from the start */
align-items: flex-end; /* Pack flex items from the end */
/* Baseline alignment */
align-items: baseline;
align-items: first baseline;
align-items: last baseline; /* Overflow alignment (for positional alignment only) */
align-items: safe center;
align-items: unsafe center;
/* Global values */
align-items: inherit;
align-items: initial;
align-items: unset;
					

normal
The effect of this keyword is dependent of the layout mode we are in:
  • In absolutely-positioned layouts, the keyword behaves like start on replaced absolutely-positioned boxes, and as stretch on all other absolutely-positioned boxes.
  • In static position of absolutely-positioned layouts, the keyword behaves as stretch .
  • For flex items, the keyword behaves as stretch .
  • For grid items, this keyword leads to a behavior similar to the one of stretch , except for boxes with an aspect ratio or an intrinsic sizes where it behaves like start .
  • The property doesn't apply to block-level boxes, and to table cells.
flex-start

The cross-start margin edges of the flex items are flushed with the cross-start edge of the line.

flex-end

The cross-end margin edges of the flex items are flushed with the cross-end edge of the line.

center

The flex items' margin boxes are centered within the line on the cross-axis. If the cross-size of an item is larger than the flex container, it will overflow equally in both directions.

start

The items are packed flush to each other toward the start edge of the alignment container in the appropriate axis.

end

The items are packed flush to each other toward the end edge of the alignment container in the appropriate axis.

self-start

The items are packed flush to the edge of the alignment container of the start side of the item, in the appropriate axis.

self-end

The items are packed flush to the edge of the alignment container of the end side of the item, in the appropriate axis.

baseline
first baseline
last baseline
All flex items are aligned such that their flex container baselines align. The item with the largest distance between its cross-start margin edge and its baseline is flushed with the cross-start edge of the line.
stretch

Flex items are stretched such that the cross-size of the item's margin box is the same as the line while respecting width and height constraints.

safe
Used alongside an alignment keyword. If the chosen keyword means that the item overflows the alignment container causing data loss, the item is instead aligned as if the alignment mode were start .
unsafe

Used alongside an alignment keyword. Regardless of the relative sizes of the item and alignment container and whether overflow which causes data loss might happen, the given alignment value is honored.

形式定义

初始值 normal
适用于 所有元素
继承 no
计算值 如指定
动画类型 discrete

形式句法

normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]

where
<baseline-position> = [ first | last ]? baseline
<overflow-position> = unsafe | safe
<self-position> = center | start | end | self-start | self-end | flex-start | flex-end

范例

CSS

#container {
  height:200px;
  width: 240px;
  align-items: center; /* Can be changed in the live sample */
  background-color: #8c8c8c;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 50px);
}
div > div {
  box-sizing: border-box;
  border: 2px solid #8c8c8c;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#item1 {
  background-color: #8cffa0;
  min-height: 30px;
}
#item2 {
  background-color: #a0c8ff;
  min-height: 50px;
}
#item3 {
  background-color: #ffa08c;
  min-height: 40px;
}
#item4 {
  background-color: #ffff8c;
  min-height: 60px;
}
#item5 {
  background-color: #ff8cff;
  min-height: 70px;
}
#item6 {
  background-color: #8cffff;
  min-height: 50px;
  font-size: 30px;
}
select {
  font-size: 16px;
}
.row {
  margin-top: 10px;
}
					

HTML

<div id="container" class="flex">
  <div id="item1">1</div>
  <div id="item2">2</div>
  <div id="item3">3</div>
  <div id="item4">4</div>
  <div id="item5">5</div>
  <div id="item6">6</div>
</div>
<div class="row">
  <label for="display">display: </label>
  <select id="display">
    <option value="flex">flex</option>
    <option value="grid">grid</option>
  </select>
</div>
<div class="row">
  <label for="values">align-items: </label>
  <select id="values">
    <option value="normal">normal</option>
    <option value="flex-start">flex-start</option>
    <option value="flex-end">flex-end</option>
    <option value="center" selected>center</option>
    <option value="baseline">baseline</option>
    <option value="stretch">stretch</option>
    <option value="start">start</option>
    <option value="end">end</option>
    <option value="self-start">self-start</option>
    <option value="self-end">self-end</option>
    <option value="left">left</option>
    <option value="right">right</option>
    <option value="first baseline">first baseline</option>
    <option value="last baseline">last baseline</option>
    <option value="safe center">safe center</option>
    <option value="unsafe center">unsafe center</option>
    <option value="safe right">safe right</option>
    <option value="unsafe right">unsafe right</option>
    <option value="safe end">safe end</option>
    <option value="unsafe end">unsafe end</option>
    <option value="safe self-end">safe self-end</option>
    <option value="unsafe self-end">unsafe self-end</option>
    <option value="safe flex-end">safe flex-end</option>
    <option value="unsafe flex-end">unsafe flex-end</option>
  </select>
</div>
					

JavaScript

var values = document.getElementById('values');
var display = document.getElementById('display');
var container = document.getElementById('container');
values.addEventListener('change', function (evt) {
  container.style.alignItems = evt.target.value;
});
display.addEventListener('change', function (evt) {
  container.className = evt.target.value;
});
					

结果

规范

规范 状态 注释
CSS Box Alignment Module Level 3
The definition of 'align-items' in that specification.
工作草案 Update to latest syntax definitions.
CSS Flexible Box Layout Module
The definition of 'align-items' in that specification.
候选推荐 初始定义

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

Support in Flex layout

更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
Supported in Flex Layout Chrome 完整支持 52
完整支持 52
部分支持 29 注意事项
注意事项 Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Chrome implements the new behavior beginning with Chrome 52.
完整支持 Prefixed
Prefixed Implemented with the vendor prefix: -webkit-
Edge 完整支持 12 Firefox 完整支持 20 注意事项
完整支持 20 注意事项
注意事项 Multi-line flexbox has been supported since Firefox 28.
完整支持 Prefixed
Prefixed Implemented with the vendor prefix: -webkit-
不支持 18 — 20 Disabled
Disabled From version 18 until version 20 (exclusive): this feature is behind the layout.css.flexbox.enabled preference (needs to be set to true ). To change preferences in Firefox, visit about:config.
preference (needs to be set to ). To change preferences in Firefox, visit about:config.
IE 完整支持 11 注意事项
完整支持 11 注意事项
注意事项 In Internet Explorer 10 and 11, if column flex items have align-items: center; set on them and their content is too large, then they will overflow the bounds of their container. See Flexbug #2 .
Opera 完整支持 12.1 Safari 完整支持 9 WebView Android 完整支持 52
完整支持 52
部分支持 4.4 注意事项
注意事项 Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Chrome implements the new behavior beginning with Chrome 52.
完整支持 Prefixed
Prefixed Implemented with the vendor prefix: -webkit-
Chrome Android 完整支持 52
完整支持 52
部分支持 29 注意事项
注意事项 Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Chrome implements the new behavior beginning with Chrome 52.
完整支持 Prefixed
Prefixed Implemented with the vendor prefix: -webkit-
Firefox Android 完整支持 20 注意事项
完整支持 20 注意事项
注意事项 Multi-line flexbox has been supported since Firefox 28.
完整支持 Prefixed
Prefixed Implemented with the vendor prefix: -webkit-
不支持 18 — 20 Disabled
Disabled From version 18 until version 20 (exclusive): this feature is behind the layout.css.flexbox.enabled preference (needs to be set to true ). To change preferences in Firefox, visit about:config.
preference (needs to be set to ). To change preferences in Firefox, visit about:config.
Opera Android 完整支持 12.1 Safari iOS 完整支持 9 Samsung Internet Android 完整支持 6.0
完整支持 6.0
部分支持 2.0 注意事项
注意事项 Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Chrome implements the new behavior beginning with Samsung Internet 6.0.
完整支持 Prefixed
Prefixed Implemented with the vendor prefix: -webkit-
first baseline and last baseline Chrome 完整支持 59 Edge 完整支持 79 Firefox 完整支持 45 IE 不支持 No Opera 完整支持 46 Safari 完整支持 11 WebView Android 完整支持 59 Chrome Android 完整支持 59 Firefox Android 完整支持 45 Opera Android 完整支持 43 Safari iOS 完整支持 11 Samsung Internet Android 完整支持 7.0
left and right Chrome 不支持 No Edge 不支持 No Firefox 完整支持 45 IE 不支持 No Opera 不支持 No Safari 完整支持 9 WebView Android 不支持 No Chrome Android 不支持 No Firefox Android 完整支持 45 Opera Android 不支持 No Safari iOS 完整支持 9 Samsung Internet Android 不支持 No
safe and unsafe Chrome 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
Edge 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
Firefox 完整支持 63 IE 不支持 No Opera 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
Safari 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
WebView Android 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
Chrome Android 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
Firefox Android 完整支持 63 Opera Android 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
Safari iOS 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
Samsung Internet Android 不支持 No 注意事项
不支持 No 注意事项
注意事项 This value is recognized, but has no effect.
start and end Chrome 不支持 No Edge 不支持 No Firefox 完整支持 45 IE 不支持 No Opera 完整支持 44 Safari 不支持 No WebView Android 不支持 No Chrome Android 不支持 No Firefox Android 完整支持 45 Opera Android 完整支持 43 Safari iOS 不支持 No Samsung Internet Android 不支持 No

图例

完整支持

完整支持

不支持

不支持

见实现注意事项。

见实现注意事项。

用户必须明确启用此特征。

用户必须明确启用此特征。

要求使用供应商前缀或不同名称。

要求使用供应商前缀或不同名称。

Support in Grid layout

更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
Supported in Grid Layout Chrome 完整支持 57 Edge 完整支持 16 Firefox 完整支持 52 IE 不支持 No Opera 完整支持 44 Safari 完整支持 10.1 WebView Android 完整支持 57 Chrome Android 完整支持 52 Firefox Android 完整支持 52 Opera Android 完整支持 43 Safari iOS 完整支持 10.3 Samsung Internet Android 完整支持 6.2
start and end Chrome 完整支持 57 Edge 完整支持 79 Firefox 完整支持 52 IE 不支持 No Opera 完整支持 44 Safari 完整支持 11 WebView Android 完整支持 57 Chrome Android 完整支持 57 Firefox Android 完整支持 52 Opera Android 完整支持 43 Safari iOS 完整支持 11 Samsung Internet Android 完整支持 7.0

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改:
  1. CSS
  2. CSS 参考
  3. CSS Box Alignment
  4. 指南
    1. Box alignment for block, absolutely positioned and table layout
    2. Box alignment in Flexbox
    3. Box alignment in Multi-column Layout
    4. Box alignment in grid layout
  5. 特性
    1. align-content
    2. align-items
    3. align-self
    4. column-gap (grid-column-gap)
    5. gap (grid-gap)
    6. justify-content
    7. justify-items
    8. justify-self
    9. place-content
    10. place-items
    11. place-self
    12. row-gap (grid-row-gap)

Copyright  © 2014-2026 乐数软件    

工业和信息化部: 粤ICP备14079481号-1