Building with tailwind css is a series of videos that provide tutorials on various components and layouts using Tailwind CSS. The series is available on both Youtube and Bilibili platforms. The videos cover topics such as sign-in forms, video cards, profile cards, dashboard layouts, navbar, property cards, modal, and more. The creator encourages viewers to subscribe and support the project.
To use the Tailwind CSS theme, you can follow these steps:
npm install tailwindcss
tailwind.config.js file in your project root and add the following content:module.exports = {
purge: [],
theme: {
extend: {},
},
variants: {},
plugins: [],
}
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
The “Building with tailwind css” video series provides tutorials on various components and layouts using Tailwind CSS. The series covers a range of topics and offers step-by-step instructions on implementing each component. The videos are available on Youtube and Bilibili, and the creator encourages viewers to subscribe and support the project. To use the Tailwind CSS theme, you need to install it using npm, create a configuration file, import the styles, and start using the classes in your project.