A Tailwind CSS component that shows the currently active screen (responsive breakpoint).
Tailwind CSS Debug Screens is a handy component that displays the active screen or responsive breakpoint in Tailwind CSS. It helps developers easily visualize and optimize the design for different screen sizes. The plugin requires Tailwind v1.0 or higher for installation.
<body> tag.To install Tailwind CSS Debug Screens:
tailwind.config.js file.// tailwind.config.js
module.exports = {
theme: {
debugScreens: {},
},
plugins: [
require('tailwindcss-debug-screens'),
],
}
debug-screens to your <body> tag:<body class="debug-screens">
Tailwind CSS Debug Screens is a useful plugin for visualizing and optimizing responsive designs in Tailwind CSS projects. With features like responsive breakpoint display, easy installation, customization options, and flexibility in ignoring screens or modifying styles, it offers developers a valuable tool for efficient web development.