| مجموع فرعی : | $2,847.55 |
| تخفیف (TAILWICK50): | -$476.00 |
| هزینه حمل و نقل : | $89.00 |
| مالیات تخمینی (12.5%) : | $70.62 |
| مجموع : | $2,531.17 |
درهای زیادی از منابع و راهنمایی های متخصص را باز کنید و به شما امکان می دهد درک عمیق تری از محصولات ما به دست آورید و به گنجینه ای از آنها دسترسی پیدا کنید. دانش اضافی.
برای نصب Tailwind CSS، می توانید با اجرای دستورات زیر از npm یا yarn استفاده کنید:
npm install tailwindcss
yarn add tailwindcss
To enable dark mode in Tailwind CSS, update your tailwind.config.js file with the darkMode option. You can choose between two different dark mode strategies: media or class.
Using class, the dark mode is enabled by adding a .dark class to an ancestor element of your components:
module.exports = {
darkMode: 'class', // or 'media'
// ...
}
To get started with your first plugin, import Tailwind’s plugin function from tailwindcss/plugin. Then inside your plugins array, call the imported plugin function with an anonymous function as the first argument.
const plugin = require('tailwindcss/plugin')
module.exports = {
plugins: [
plugin(function({ addUtilities, addComponents, e, config }) {
// Add your custom styles here
}),
]
}
You can customize the tailwind.config.js file to override the default configuration options provided by Tailwind CSS. The configuration file follows the following structure:
module.exports = {
purge: [],
theme: {
extend: {
...
},
},
variants: {},
plugins: [],
}
Tailwind CSS انواع واکنشگرا را برای اکثر برنامههای کاربردی تولید میکند و به شما امکان میدهد به راحتی طرحهای واکنشگرا ایجاد کنید. به طور پیش فرض، شامل چهار نقطه شکست است:
sm: 640pxmd: 768pxlg: 1024pxxl: 1280px<div class="lg:flex">
<!-- Your content here -->
</div>
تم ها و طرح بندی های خود را انتخاب کنید و غیره