1. 布局
  2. 对象适合

Quick reference

Class
Properties
object-containobject-fit: contain;
object-coverobject-fit: cover;
object-fillobject-fit: fill;
object-noneobject-fit: none;
object-scale-downobject-fit: scale-down;

基本用法

¥Basic usage

调整大小以覆盖容器

¥Resizing to cover a container

使用 object-cover 工具调整元素内容的大小以覆盖其容器。

¥Use the object-cover utility to resize an element’s content to cover its container.

<div class="bg-indigo-300 ...">
  <img class="object-cover h-48 w-96 ...">
</div>

包含一个元素

¥Containing an element

使用 object-contain 工具调整元素内容的大小以使其包含在其容器内。

¥Use the object-contain utility to resize an element’s content to stay contained within its container.

<div class="bg-purple-300 ...">
  <img class="object-contain h-48 w-96 ...">
</div>

拉伸以适应容器

¥Stretching to fit a container

使用 object-fill 工具拉伸元素的内容以适合其容器。

¥Use the object-fill utility to stretch an element’s content to fit its container.

<div class="bg-sky-300 ...">
  <img class="object-fill h-48 w-96 ...">
</div>

如果太大则缩小

¥Scaling down if too large

使用 object-scale-down 工具以元素的原始大小显示元素的内容,但如有必要,可将其缩小以适合其容器。

¥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.

<div class="bg-cyan-300">
  <img class="object-scale-down h-48 w-96 ...">
</div>

使用元素的原始大小

¥Using an element’s original size

使用 object-none 工具以原始大小显示元素的内容,忽略容器大小。

¥Use the object-none utility to display an element’s content at its original size ignoring the container size.

<div class="bg-yellow-300">
  <img class="object-none h-48 w-96 ...">
</div>

有条件地应用

悬停、聚焦和其他状态

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:object-scale-down to only apply the object-scale-down utility on hover.

<img class="object-contain hover:object-scale-down">

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

断点和媒体查询

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:object-scale-down to apply the object-scale-down utility at only medium screen sizes and above.

<img class="object-contain md:object-scale-down">

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.