Back to Content

min-content

files/en-us/web/css/reference/values/min-content/index.md

latest1.9 KB
Original Source

The min-content sizing keyword represents the minimum intrinsic size of an element. The keyword shrinks the element to the smallest possible size without causing avoidable overflow of its content. For text content, this keyword causes the content to wrap at every opportunity (such as spaces between words), and the element will be only as wide as the longest word.

The {{cssxref("interpolate-size")}} property and {{cssxref("calc-size()")}} function can be used to enable animations to and from min-content.

Syntax

css
/* Used as a length value */
width: min-content;
inline-size: min-content;
height: min-content;
block-size: min-content;

/* Used in grid tracks */
grid-template-columns: 200px 1fr min-content;

Examples

Sizing boxes with min-content

HTML

html
<div class="item">Item</div>
<div class="item">Item with more text in it.</div>

CSS

css
.item {
  width: min-content;
  background-color: #8ca0ff;
  padding: 5px;
  margin-bottom: 1em;
}

Result

{{EmbedLiveSample("Using_min-content_for_box_sizing", "100%", 200)}}

Sizing grid columns with min-content

HTML

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

CSS

css
#container {
  display: grid;
  grid-template-columns: min-content min-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;
}

Result

{{EmbedLiveSample("Sizing_grid_columns_with_min-content", "100%", 200)}}

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • Related sizing keywords: {{cssxref("max-content")}}, {{cssxref("fit-content")}}
  • CSS box sizing module