Home

Awesome

Blazor and Tailwind CSS

Blazor, a powerful framework for building interactive client-side web UI with .NET, and Tailwind CSS, a highly customizable, low-level CSS framework, come together to provide a streamlined development experience.

This guide is designed for developers who are interested in exploring the synergy between Blazor and Tailwind CSS. It provides insights and practical steps to integrate these technologies effectively, enhancing both the aesthetics and functionality of your web applications.

Quick setup

module.exports = {
  content:
      [
          './**/*.razor',//it will scan all razor files in the project and will find all the tailwind classes that you use
          './wwwroot/index.html' //not necessary if you use Blazor 8 Web App (not just standalone wasm app)
      ],
}

Related repositories

Notes and tips