Box Shadow

    Outer shadow

    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.

    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.

    Box Shadow - 图2

    1. <div class="shadow-inner"></div>

    Focus outline shadow

    Use the .shadow-outline utility to apply a focus-ring-style shadow to an element. This can be useful when combined with .focus:outline-none to create a better looking focus style that follows an element’s border radius.

    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.

    Box Shadow - 图4

    1. <div class="shadow-none"></div>

    Responsive

    For more information about Tailwind’s responsive design features, check out the documentation.

    all

    Box Shadow - 图6

    sm

    md

    Box Shadow - 图8

    xl

    By default Tailwind provides three drop shadow utilities, one inner shadow utility, and a utility for removing existing shadows. You can change, add, or remove these by editing the theme.boxShadow section of your Tailwind config.

    If a 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.

    1. module.exports = {
    2. theme: {
    3. boxShadow: {
    4. xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
    5. sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
    6. default: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
    7. md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
    8. lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
    9. xl: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
    10. '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)',
    11. + '3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.3)',
    12. inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)',
    13. + focus: '0 0 0 3px rgba(66, 153, 225, 0.5)',
    14. none: 'none',
    15. }
    16. }
    17. }

    By default, only responsive, hover and focus variants are generated for box shadow utilities.

    You can control which variants are generated for the box shadow utilities by modifying the boxShadow property in the variants section of your tailwind.config.js file.

    For example, this config will also generate active and group-hover variants:

    If you don’t plan to use the box shadow utilities in your project, you can disable them entirely by setting the boxShadow property to false in the corePlugins section of your config file:

    1. // tailwind.config.js
    2. module.exports = {
    3. corePlugins: {
    4. // ...
    5. + boxShadow: false,
    6. }