backgroundColor: { white: 'var(--color-bg-white)', main: 'var(--color-bg-main)', input: 'var(--color-bg-input)', disable: 'var(--color-bg-disable)', primary: 'var(--color-bg-primary)', hover: 'var(--color-bg-hover)', ...
只需要设置几个选项就能完成,并且搭配了 tailwindcss 的 color 系统灵活性也非常的好。
有人说它类名科学易记,但是,根本就不该有类名,就应该inline写法。没有样式复用这回事,该复用的是...
backdrop-filter 是一种 CSS 属性,它可以让你对一个元素的背景或背景区域应用图形效果,比如模糊、色彩变换等。它和 filter 属性的效果类似,但是 filter 属性是对元素的内容应用效果,而 backdrop-filter 属性是对元素的背景应用效果。 You can configure shortcuts for common @supports rules you’re using in you...
export default App; 随后,我们就可以使用yarn dev进行本地项目的部署和查验了。 2. 使用 Tailwind CSS 的先决条件 上面的问题是可以通过一些规则来规避和改变的,让我们项目即利用了Tailwind CSS便利性时,又变成可维护性。 如果大家想在项目中使用Tailwind CSS,可以考虑下,自己团队和项目中,是否满足下面的条件;如果...
This element has a blue background color by default, but changes to green starting from the medium breakpoint. In the above example, thebg-blue-500class is applied by default, setting the background color to blue. However, starting from the medium breakpoint and above (md:bg-green-500...
defaultColor{.text-#{$colorKey}{color:$color;}.bg-#{$colorKey}{background:$color;}}// text-red-100 bg-red-100 ...@each$colorKey,$colorDicin$colors{@each$index,$colorin$colorDic{.text-#{$colorKey}-#{$index}{color:$color;}.bg-#{$colorKey}-#{$index}{background:$color;}.border-...
.bg-blue { background-color: rgb(81, 191, 255); } 如果将此类添加到标签中,它将获得蓝色背景,颜色如上面代码rgb(81, 191, 255)所示。 HTML 如下: <!DOCTYPE html> Document Hello world! 效果如下: # ON 我们可以编写这种单一用途的 CSS 规则...
Background Image Gradient Color Stops Borders Border Radius Border Width Border Color Border Style Divide Width Divide Color Divide Style Outline Width Outline Color Outline Style Outline Offset Ring Width Ring Color Ring Offset Width Ring Offset Color ...
//tailwind.config.jsconstplugin=require('tailwindcss/plugin')module.exports={plugin:[plugin(function({addComponents}){constbuttons={'.btn':{padding:'.5rem 1rem',borderRadius:'.25rem',fontWeight:'600',},'.btn-blue':{backgroundColor:'#3490dc',color:'#fff','&:hover':{backgroundColor:'...