布局
用于控制如何调整替换元素内容大小的工具。
¥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 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:object-scale-down
仅在 hover 时应用 object-scale-down
工具。
<img class="object-contain hover:object-scale-down">
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:object-scale-down
仅在中等屏幕尺寸及以上时应用 object-scale-down
工具。
<img class="object-contain md:object-scale-down">