“Как установить Tailwind CSS в HTML” Ответ

Как установить Tailwind CSS в HTML

    
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
    
Successful Seahorse

Установите Tailwind CSS

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init
darkrabel

Установка Tailwind CSS

   				  /*Follow the commands for Tailwind CLI*/
1. Initialize a node project in your directory:
           npm init -y
           
2. Install tailwindcss as a devDependency: 
           npm i -D tailwindcss
           
3. Install vs code plugin: Tailwind CSS IntelliSense (not for terminal)

4. Create a configuration file for tailwindcss: 
           npx tailwindcss init
           
5. Create src and output folder in root.

6. In src folder create a file named tailwind.css / (anyname).css

7. In src/tailwind.css write these : 
           @tailwind base;
           @tailwind components;
           @tailwind utilities
8. Create a folder named .vscode and ini this folder create a file 
   named settings.json. 
   
9. And paste this: 
           {
           	 "css.validate": false, 
             "tailwindCSS.emmetCompletions": true
           }
  this setting will help to not get erron after writing css

10. In scritps property in package.json file write a build property:

  "scripts": 
      "build": "tailwindcss -i ./src/tailwind.css -o ./output/tailwind.css -w"
      
11. Link tailwind in HTML like this href="./output/tailwind.css"

12. Now build tailwind: 
			npm run build 

13. Now you just have on task to complete which is content configuration: 
    See the configuration from here: 
         https://tailwindcss.com/docs/content-configuration
Md. Ashikur Rahman

Установка Tailwind CSS в HTML

npx tailwindcss -i style.css -o tailwind.css
Relieved Rook

Ответы похожие на “Как установить Tailwind CSS в HTML”

Вопросы похожие на “Как установить Tailwind CSS в HTML”

Больше похожих ответов на “Как установить Tailwind CSS в HTML” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования