Tailwind CSS on GitHub

Drop Shadow

Utilities for applying drop-shadow filters to an element.

Default class reference

Class
Properties
drop-shadow-sm--tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
drop-shadow--tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
drop-shadow-md--tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
drop-shadow-lg--tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
drop-shadow-xl--tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
drop-shadow-2xl--tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
drop-shadow-none--tw-drop-shadow: drop-shadow(0 0 #0000);

Usage

Use the drop-shadow-{amount} utilities alongside the filter utility to blur an element.

<div class="filter drop-shadow-lg ...">
  <!-- ... -->
</div>

Responsive

To control an element's drop shadow at a specific breakpoint, add a {screen}: prefix to any existing drop-shadow utility. For example, use md:drop-shadow-xl to apply the drop-shadow-xl utility at only medium screen sizes and above.

<div class="filter drop-shadow-md md:drop-shadow-xl ...">
  <!-- ... -->
</div>

For more information about Tailwind's responsive design features, check out the Responsive Design documentation.

Customizing

Variants

默认情况下, 针对 drop-shadow 功能类,只生成 responsive 变体。

您可以通过修改您的 tailwind.config.js 文件中的 variants 部分中的 dropShadow 属性来控制为 drop-shadow 功能生成哪些变体。

例如,这个配置将生成 hover and focus 变体:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       dropShadow: ['hover', 'focus'],
      }
    }
  }

Disabling

如果您不打算在您的项目中使用 drop-shadow 功能,您可以通过在配置文件的 corePlugins 部分将 dropShadow property to false in the corePlugins section of your config file:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     dropShadow: false,
    }
  }