在react中使用tailwind的问题
react使用tailwind
现创建react项目
npx create-react-app name
进入创建的项目文件夹,安装tailwind,postcss,autoprefixer
因为react自带安装了上一版本的postcss,所以这里要特别指定安装对应的旧版本。
npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat @tailwind/postcss7-compat postcss@^7 autoprefixer@^9
又由于react本身不让我们覆写它的postcss设定,所以要另外安装craco这个工具
npm i @craco/craco
下载完后,打开package.json文件,修改scripts中start,build,test的react-scripts为craco
然后生成一个和package.json同级的craco.config.js,编写如下
module.exports = { style: { postcss: { plugins: [ require('tailwindcss'), require('autoprefixer') ] } } }
这里的设定代表原先的postcss设定文件
然后
npx tailwindcss init`
初始化tailwind的设定文件tailwind.config.js,设定purge的数组为src的目录以及public文件夹下的index.html
'./src/**/*.{js,jsx,ts,tsx}', './public/index.html'
然后编辑src目录下的index.css,清空里面的内容,然后加载tailwind三大部件。
@tailwind base; @tailwind components; @tailwind utilities;
到此为止,已经可以基本使用tailwind样式了,在App组件中尝试一下
import pic from './malibu.jpg' function App() { return ( <div className="antialiased text-gray-900 bg-gray-200 min-h-screen p-8 flex items-center flex-col justify-center min-w-screen"> <div className="p-4 bg-indigo-300 rounded-3xl "> <h1 className=" text-xl font-semibold text-gray-500">Tailwind CSS</h1> <div className="w-24 mt-3"> <img className="rounded-lg shadow-md" src={pic} alt="pic" /> </div> <div className=""> <span className="float-left mt-2 p-2 bg-green-300 text-sm font-black rounded-full shadow-sm">Nice view!</span> <div></div> <span className=" mr-100% float-right mt-2 p-2 bg-white text-sm font-black rounded-full shadow-sm">Go now?</span> </div> </div> </div> ); } export default App;
效果图
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
解决React报错Cannot assign to 'current'
这篇文章主要为大家介绍了React报错Cannot assign to 'current' because it is a read-only property的解决方法,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-12-12React hook 'useState' is calle
这篇文章主要为大家介绍了React hook 'useState' is called conditionally报错解决,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-12-12react项目打包后点击index.html页面出现空白的问题
这篇文章主要介绍了react项目打包后点击index.html页面出现空白的问题及解决,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-06-06React Native 集成 ArcGIS 地图的详细过程
ArcGIS官方提供了 JavaScript SDK,也提供了 ArcGIS-Runtime-SDK-iOS,但是并没有提供 React Native的版本,所以这里使用了 react-native-arcgis-mapview 库,本文给大家介绍React Native 集成 ArcGIS 地图的详细过程,感兴趣的朋友跟随小编一起看看吧2024-06-06
最新评论