Layout
Utilities for controlling how a replaced element's content should be resized.
Class | Styles |
---|---|
object-contain | object-fit: contain; |
object-cover | object-fit: cover; |
object-fill | object-fit: fill; |
object-none | object-fit: none; |
object-scale-down | object-fit: scale-down; |
Use the object-cover
utility to resize an element's content to cover its container:
<img class="h-48 w-96 object-cover ..." src="/img/mountains.jpg" />
Use the object-contain
utility to resize an element's content to stay contained within its container:
<img class="h-48 w-96 object-contain ..." src="/img/mountains.jpg" />
Use the object-fill
utility to stretch an element's content to fit its container:
<img class="h-48 w-96 object-fill ..." src="/img/mountains.jpg" />
Use the object-scale-down
utility to display an element's content at its original size but scale it down to fit its container if necessary:
<img class="h-48 w-96 object-scale-down ..." src="/img/mountains.jpg" />
Use the object-none
utility to display an element's content at its original size ignoring the container size:
<img class="h-48 w-96 object-none ..." src="/img/mountains.jpg" />
Prefix an object-fit
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<img class="object-contain md:object-cover" src="/img/mountains.jpg" />
Learn more about using variants in the variants documentation.
Tailwind CSS 中文网(本网站)的目标是为中文开发者提供准确、及时的 Tailwind CSS 中文文档
Tailwind CSS 中文文档由本网站维护人员共同翻译,采用 MIT 开源协议发布
本网站与 tailwindcss.com 及 Tailwind Labs Inc. 并无从属关系
Tailwind 商标由 Tailwind Labs Inc. 所有
京ICP备15031610号-8