muhammadaziz01-dev / Book-Selter

Book selter

Home Page:https://65e893de9a97da15a813e3fa--shimmering-cuchufli-73f1db.netlify.app/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tailwind Starter

  1. npm init

npm install -D tailwindcss

npx tailwindcss init 

index.html

<!doctype html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
  <h1 class="text-3xl font-bold underline">
    Hello world!
  </h1>
</body>
</html>
  1. styles/style.css

@tailwind base;
@tailwind components;
@tailwind utilities;


  1. Configuration tailwind.config.js

tailwind.config.js


/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./index.html", "./pages/**/*.html/"],
  theme: {
    extend: {},
  },
  plugins: [],
}


  1. watching pages
npx tailwindcss -i ./styles/index.css -o ./styles/output.css --watch