Background Grid

  • Use bg-grid-<color> for adding a background grid.
  • Use bg-grid-<spacing> for altering the size of the squares.
  • Use bg-grid-w-<spacing> and bg-grid-h-<spacing> for altering the width and the height separately.
  • Use bg-grid-border-<border-width> for altering the thickness of the lines.

Usage

Single import

// tailwind.config.js | tailwind.config.ts

import { bgGrid } from "tailwindcss-addons"

export default {
    plugins: [bgGrid],
}

Multi import

// tailwind.config.js | tailwind.config.ts

import tailwindcssAddons from "tailwindcss-addons"

export default {
    plugins: [
        ...tailwindcssAddons({
            bgGrid: false, // Enabled by default
        }),
    ],
}
Return to top