效果
用于控制元素的框阴影的工具。
¥Basic usage
¥Adding an outer shadow
使用 shadow-sm
、shadow
、shadow-md
、shadow-lg
、shadow-xl
或 shadow-2xl
工具将不同大小的外框阴影应用于元素。
¥Use the shadow-sm
, shadow
, shadow-md
, shadow-lg
, shadow-xl
, or shadow-2xl
utilities to apply different sized outer box shadows to an element.
shadow-md
shadow-lg
shadow-xl
shadow-2xl
<div class="shadow-md ..."></div>
<div class="shadow-lg ..."></div>
<div class="shadow-xl ..."></div>
<div class="shadow-2xl ..."></div>
¥Adding an inner shadow
使用 shadow-inner
工具将微妙的内嵌框阴影应用于元素。这对于表单控件或井之类的东西很有用。
¥Use the shadow-inner
utility to apply a subtle inset box shadow to an element. This can be useful for things like form controls or wells.
shadow-inner
<div class="shadow-inner ..."></div>
¥Removing the shadow
使用 shadow-none
从元素中删除现有的框阴影。这最常用于删除在较小断点处应用的阴影。
¥Use shadow-none
to remove an existing box shadow from an element. This is most commonly used to remove a shadow that was applied at a smaller breakpoint.
shadow-none
<div class="shadow-none ..."></div>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:shadow-lg
仅在 hover 时应用 shadow-lg
工具。
<div class="shadow hover:shadow-lg">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:shadow-lg
仅在中等屏幕尺寸及以上时应用 shadow-lg
工具。
<div class="shadow md:shadow-lg">
<!-- ... -->
</div>
要了解更多信息,请查看有关 响应式设计、暗黑模式、以及 其他媒体查询修饰符 的文档。
¥Using custom values
¥Customizing your theme
默认情况下,Tailwind 提供了六个投影工具、一个内部阴影工具和一个用于删除现有阴影的工具。你可以通过编辑 tailwind.config.js
文件中的 theme.boxShadow
或 theme.extend.boxShadow
来自定义这些值。
¥By default, Tailwind provides six drop shadow utilities, one inner shadow utility, and a utility for removing existing shadows. You can customize these values by editing theme.boxShadow
or theme.extend.boxShadow
in your tailwind.config.js
file.
如果提供了 DEFAULT
影子,它将用于无后缀的 shadow
工具。任何其他密钥都将用作后缀,例如密钥 '2'
将创建相应的 shadow-2
工具。
¥If a DEFAULT
shadow is provided, it will be used for the non-suffixed shadow
utility. Any other keys will be used as suffixes, for example the key '2'
will create a corresponding shadow-2
utility.
module.exports = {
theme: {
extend: {
boxShadow: {
'3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.3)',
}
}
}
}
在 主题定制 文档中了解有关自定义默认主题的更多信息。
¥Learn more about customizing the default theme in the theme customization documentation.
¥Arbitrary values
如果你需要使用一次性的 box-shadow
值,而该值没有必要包含在你的主题中,请使用方括号动态生成属性,使用任意值。
<div class="shadow-[0_35px_60px_-15px_rgba(0,0,0,0.3)]">
<!-- ... -->
</div>
在 任意值 文档中了解有关任意值支持的更多信息。