docs.rodeo

MDN Web Docs mirror

fit-content()

{{CSSRef}} 

The fit-content() CSS function clamps a given size to an available size according to the formula min(maximum size, max(minimum size, argument)).

{{EmbedInteractiveExample("pages/css/function-fit-content.html")}} 

The function can be used as a track size in CSS grid properties, where the maximum size is defined by max-content and the minimum size by auto, which is calculated similar to auto (i.e., minmax(auto, max-content)), except that the track size is clamped at argument if it is greater than the auto minimum.

See the {{cssxref("grid-template-columns")}}  page for more information on the max-content and auto keywords.

The fit-content() function can also be used as laid out box size for {{cssxref("width")}} , {{cssxref("height")}} , {{cssxref("min-width")}} , {{cssxref("min-height")}} , {{cssxref("max-width")}}  and {{cssxref("max-height")}} , where the maximum and minimum sizes refer to the content size.

Syntax

The fit-content() function accepts a <length> or a <percentage> as an argument.

/* <length> values */
fit-content(200px)
fit-content(5cm)
fit-content(30vw)
fit-content(100ch)

/* <percentage> value */
fit-content(40%)

Values

Formal syntax

{{CSSSyntax("fit-content")}} 

Examples

Sizing grid columns with fit-content

HTML

<div id="container">
  <div>Item as wide as the content.</div>
  <div>
    Item with more text in it. Because the contents of it are wider than the
    maximum width, it is clamped at 300 pixels.
  </div>
  <div>Flexible item</div>
</div>

CSS

#container {
  display: grid;
  grid-template-columns: fit-content(300px) fit-content(300px) 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_fit-content", "100%", 200)}} 

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN