max-content sizing keyword represents the intrinsic maximum width of the content. For text content this means that the content will not wrap at all even if it causes overflows.

句法

/* Used as a length */
width: max-content;
inline-size: max-content;
height: max-content;
block-size: max-content;
/* used in grid tracks */
grid-template-columns: 200px 1fr max-content;
					

范例

Using max-content for box sizing

HTML

<div id="container">
  <div class="item">Item</div>
  <div class="item">Item with more text in it which will overflow the fixed width box.</div>
</div>
					

CSS

#container {
  background-color: #8cffa0;
  padding: 10px;
  width: 200px;
}
.item {
  width: max-content;
  background-color: #8ca0ff;
  padding: 5px;
  margin-bottom: 1em;
}
					

结果

Sizing grid columns with max-content

HTML

<div id="container">
  <div>Item</div>
  <div>
    Item with more text in it.
  </div>
  <div>Flexible item</div>
</div>
					

CSS

#container {
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  grid-gap: 5px;
  box-sizing: border-box;
  height: 200px;
  width: 100%;
  background-color: #8cffa0;
  padding: 10px;
}
#container > div {
  background-color: #8ca0ff;
  padding: 5px;
}
					

结果

规范

规范 状态 注释
CSS Box Sizing Module Level 3
The definition of 'max-content' in that specification.
工作草案 Defines the keyword as laid out box size for width , height , min-width , min-height , max-width and max-height .
CSS 栅格布局
The definition of 'max-content' in that specification.
候选推荐 Defines the keyword when used as a track size.

浏览器兼容性

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.

Supported for width (and other sizing properties)

更新 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
max-content Chrome 完整支持 46 Edge 完整支持 79 Firefox 完整支持 66
完整支持 66
完整支持 3 Prefixed
Prefixed Implemented with the vendor prefix: -moz-
IE 不支持 No Opera 完整支持 44 Safari 完整支持 11
完整支持 11
完整支持 2 Alternate Name
Alternate Name Uses the non-standard name: intrinsic
WebView Android 完整支持 46 Chrome Android 完整支持 46 Firefox Android 完整支持 66
完整支持 66
完整支持 4 Prefixed
Prefixed Implemented with the vendor prefix: -moz-
Opera Android 完整支持 43 Safari iOS 完整支持 11
完整支持 11
完整支持 1 Alternate Name
Alternate Name Uses the non-standard name: intrinsic
Samsung Internet Android 完整支持 5.0

图例

完整支持

完整支持

不支持

不支持

使用非标名称。

使用非标名称。

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

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

另请参阅

元数据

  • 最后修改:

Copyright  © 2014-2026 乐数软件    

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