Tailwind CSS
Tailwind CSS 是一个强大的工具,用于快速构建现代网页界面,包括移动端样式。
安装
1. Tailwind Cli
1
2
|
npm install -D tailwindcss
npx tailwindcss init
|
Add the paths to all of your template files in your tailwind.config.js file.
1
2
3
4
5
6
7
8
|
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}
|
2. CDN
响应式设计
- sm 适用于最小宽度为 640px 的设备;
- md 适用于最小宽度为 768px 的设备;
- lg 适用于最小宽度为 1024px 的设备;
- xl 适用于最小宽度为 1280px 的设备;
- 2xl 适用于最小宽度为 1536px 的设备。
1
2
3
|
<div class="bg-blue-500 sm:bg-green-500 md:bg-red-500 lg:bg-yellow-500 xl:bg-purple-500">
这是一个响应式背景色
</div>
|