Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

install tailwind css

darkrabel answered on April 1, 2021 Popularity 10/10 Helpfulness 5/10

Contents


More Related Answers

  • tailwind css not working after install
  • Install Tailwind CSS with Vite
  • tailwind css npm
  • tailwind download button
  • install tailwindcss with vite tool
  • install tailwindcss nodejs
  • import tailwind
  • npm tailwind css
  • react tailwindcss install
  • tailwind important
  • install tailwind in angular
  • install tailwindcss using npm
  • How to install tailwind cdn
  • tailwind css cli
  • important tailwind
  • installation tailwind css in html
  • Install tailwind
  • tailwind installation
  • How to install tailwindcss in astro js
  • tailwind css modules

  • install tailwind css

    0
    Popularity 10/10 Helpfulness 5/10 Language css
    Link to this answer
    Share Copy Link
    Contributed on Jan 30 2022
    darkrabel
    0 Answers  Avg Quality 2/10

    Closely Related Answers



    2

     terminal 

    Popularity 10/10 Helpfulness 8/10 Language whatever
    Tags: npm
    Link to this answer
    Share Copy Link
    Contributed on Apr 14 2023
    Praise Owode
    0 Answers  Avg Quality 2/10

    5
    Popularity 10/10 Helpfulness 5/10 Language shell
    Source: Grepper
    Tags: shell shel
    Link to this answer
    Share Copy Link
    Contributed on Apr 01 2021
    Adorable Albatross
    0 Answers  Avg Quality 2/10

    2
    Popularity 10/10 Helpfulness 5/10 Language css
    Source: Grepper
    Tags: css
    Link to this answer
    Share Copy Link
    Contributed on May 29 2022
    Md. Ashikur Rahman
    0 Answers  Avg Quality 2/10

    2
    Popularity 10/10 Helpfulness 5/10 Language css
    Tags: css
    Link to this answer
    Share Copy Link
    Contributed on Jul 05 2021
    Successful Seahorse
    0 Answers  Avg Quality 2/10

    5
    Popularity 10/10 Helpfulness 4/10 Language shell
    Source: Grepper
    Tags: shell shel
    Link to this answer
    Share Copy Link
    Contributed on Oct 20 2021
    Motionless Mosquito
    0 Answers  Avg Quality 2/10

    0
    Popularity 9/10 Helpfulness 4/10 Language shell
    Source: Grepper
    Tags: shell shel
    Link to this answer
    Share Copy Link
    Contributed on May 02 2022
    Matija Štrlekar
    0 Answers  Avg Quality 2/10

    0
    Popularity 8/10 Helpfulness 4/10 Language shell
    Source: flowbite.com
    Tags: shell
    Link to this answer
    Share Copy Link
    Contributed on Dec 29 2023
    ASHABB
    0 Answers  Avg Quality 2/10

    1

    //Terminal***********


    npm install -D tailwindcss OR all at once with npm install -D tailwindcss autoprefixer

    THEN

    npx tailwindcss init


    //Add the paths to all of your template files in your tailwind.config.js file.***********


    /** @type {import('tailwindcss').Config} */

    module.exports = {

    content: ["./src/**/*.{html,js,jsx}"],   ....comma separated file types

    theme: {

    extend: {},

    },

    plugins: [],

    }


    //Add the Tailwind directives to your CSS***********


    @tailwind base;

    @tailwind components;

    @tailwind utilities;


    //Terminal - Start the Tailwind CLI build process....Per docs...Haven't used myself***********

    npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch


    //You're ready to use! If you want to use postcss, in Terminal***********

    npm install -D postcss-import


    //postcss.config.js file

    module.exports = {

    plugins: {

    'postcss-import': {},

    tailwindcss: {},

    autoprefixer: {},

    }

    }


    Source: https://tailwindcss.com/docs/using-with-preprocessors#using-post-css-as-your-preprocessor


    https://tailwindcss.com/docs/installation

    Popularity 10/10 Helpfulness 3/10 Language whatever
    Source: Grepper
    Tags: javascript j
    Link to this answer
    Share Copy Link
    Contributed on Mar 13 2023
    Hapless Hacker
    0 Answers  Avg Quality 2/10

    0
    Popularity 10/10 Helpfulness 3/10 Language shell
    Source: www.npmjs.com
    Tags: shell shel
    Link to this answer
    Share Copy Link
    Contributed on Nov 09 2021
    Fair Finch
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.