css原子化的框架Tailwindcss的使用教程(原始html和vue项目的安装与配置)

安装教程

中文官网教程

原始的HTML里面使用

  • 新建文件夹
  • npm init -y 初始化项目

安装相关依赖

js 复制代码
npm install -D tailwindcss postcss-cli autoprefixer

初始化两个文件

js 复制代码
npx tailwindcss init -p

根目录下新建src/style.css

css 复制代码
@tailwind base;
@tailwind components;
@tailwind utilities;

tailwind.config.js内增加如下配置

js 复制代码
/** @type {import('tailwindcss').Config} */
module.exports = {
  // purge内代表匹配所有的html文件,即会扫描所有的html文件进行自动生成对应的css
  purge: ['./src/**/*.html'],
  content: [],
  theme: {
    extend: {},
  },
  plugins: [],
}

package.json新增节点

js 复制代码
"scripts":{
    "watch":"postcss src/style.css -o dist/style.css --watch",
    "build":"postcss src/style.css -o dist/style.css"
}

html引入只需要引入src下面的css文件即可

至此,当我们运行npm run watch之后,html类名有变动则对应的dist/style.css文件内也会增加对应的类

当我们运行npm run build会打包生成dist/style.css

多个类的内容整合成一个类

js 复制代码
在html中
<div class='heading'></div>

在src/style.css内
新增如下:
.heading{
    @apply text-9xl text-center text-blue-600 sm:bg-black sm:text-white;
}

打包出来dist/style.css的结果为
.heading{
    font-size:8rem;
    line-height:1;
    text-align:center;
    --te-text-opacity:1;
    color:rgba(37,99,235,var(--tw-text-opacity))
}
// 后面还有关于heading的响应式,就不写了

vue内使用安装教程

这里使用vite配置

创建项目

js 复制代码
npm create vite@latest

安装依赖

js 复制代码
npm install  // 先全部安装
npm install -D tailwindcss postcss-cli autoprefixer  // 再安装需要的依赖

初始化两个文件

js 复制代码
npx tailwindcss init -p

设置tailwind.config.js文件的目录位置

js 复制代码
/** @type {import('tailwindcss').Config} */
export default {
  // 当以下被匹配到的文件内的类名变化时,会被匹配到,同时会在打包目录下新增类对应的样式
  purge:['./index.html','./src/**/*.{vue,js,ts,jsx,tsx}'],
  content: [],
  theme: {
    extend: {},
  },
  plugins: [],
}

在src下面新增index.css

css 复制代码
@tailwind base;
@tailwind components;
@tailwind utilities;

在main.js内引入index.css

js 复制代码
import { createApp } from 'vue'
import './index.css'
import App from './App.vue'

createApp(App).mount('#app')

编辑App.vue

js 复制代码
<script setup>

import { ref, reactive } from 'vue';
const count = ref(0);

</script>

<template>
  <div class="text-9xl text-center text-blue-600 sm:block">
    hello world
  </div>
</template>

<style scoped lang="scss">

</style>

运行项目

js 复制代码
npm run dev

效果图

具体的类名和样式需要大家去官网查询,这里我推荐的是中文网(因为能看懂)

相关推荐
dawn19122816 分钟前
SpringMVC 入门案例详解
java·spring·html·mvc
一只小阿乐1 小时前
前端web端项目运行的时候没有ip访问地址
vue.js·vue·vue3·web端
计算机学姐2 小时前
基于python+django+vue的旅游网站系统
开发语言·vue.js·python·mysql·django·旅游·web3.py
胖虎哥er2 小时前
Html&Css 基础总结(基础好了才是最能打的)三
前端·css·html
.ccl2 小时前
web开发 之 HTML、CSS、JavaScript、以及JavaScript的高级框架Vue(学习版2)
前端·javascript·vue.js
小徐不会写代码2 小时前
vue 实现tab菜单切换
前端·javascript·vue.js
科研小白_d.s2 小时前
intellij-idea创建html项目
java·html·intellij-idea
2301_765347542 小时前
Vue3 Day7-全局组件、指令以及pinia
前端·javascript·vue.js
ch_s_t2 小时前
新峰商城之分类三级联动实现
前端·html
辛-夷2 小时前
VUE面试题(单页应用及其首屏加载速度慢的问题)
前端·javascript·vue.js