rounded-none border-radius: 0px; rounded-sm border-radius: 0.125rem; /* 2px */ rounded border-radius: 0.25rem; /* 4px */ rounded-md border-radius: 0.375rem; /* 6px */ rounded-lg border-radius: 0.5rem; /* 8px */ rounded-xl border-radius: 0.75rem; /* 12px */ rounded-2xl bo...
module.exports = { theme: { borderRadius: { none: '0', sm: '0.125rem', default: '0.25rem', md: '0.375rem', lg: '0.5rem', xl: '0.75rem', '2xl': '1rem', '3xl': '1.5rem', full: '9999px', // 你可以在这里添加自定义的圆角大小 custom: '0.4rem', }, }, }; 然后,你...
.rounded-t-noneborder-top-left-radius: 0; border-top-right-radius: 0; .rounded-r-noneborder-top-right-radius: 0; border-bottom-right-radius: 0; .rounded-b-noneborder-bottom-right-radius: 0; border-bottom-left-radius: 0; .rounded-l-noneborder-top-left-radius: 0; border-bottom-left-...
border-solid 即 border-style: solid; border-dashed 即 border-style: dashed; border-dotted 即 border-style: dotted; border-double 即 border-style: double; 弧度 rounded 即 border-radius: 0.25rem; /_ 0.25 _ 16 = 4px/ rounded-md 即 border-radius: 0.375rem; /6px/ rounded-lg 即 border-ra...
v-bind(boxWidth); width: v-bind(boxWidth); border: 1px solid #000; border-radius: 10px...
.my-custom-class{@applytext-center;@applybg-blue;@applyborder-2;} 比如在上面的案例中,我们定义了我们自己的类名my-custom-class,然后使用@apply指令将text-center、bg-blue和border-2应用于我们自定义的样式,这样就可以根据具体的需求,封装一系列我们需要的样式规则。
*/ *, ::before, ::after { box-sizing: border-box; } 你还可以看到在创建的 style.css 文件的顶部应用了现代规范化。 使用npx 命令构建,可以将 build 命令添加到 package.json 文件中 "scripts": { "build": "tailwind build css/style.css -o public/css/style.css" }, 这样就完成了可以使用 ...
// tailwind.config.jsconstplugin=require('tailwindcss/plugin')module.exports={plugins:[plugin(function({addComponents}){constbuttons={'.btn':{padding:'.5rem 1rem',borderRadius:'.25rem',fontWeight:'600',},'.btn-blue':{backgroundColor:'#3490dc',color:'#fff','&:hover':{backgroundColor:...
module.exports=function({addUtilities}){addUtilities({'.custom-button':{backgroundColor:'red',color:'white',padding:'1rem 2rem',borderRadius:'5px',},});} 实战演练 制作一个简单的页面 创建HTML文件:创建一个HTML文件,如下所示: <!DOCTYPE html>TailwindCSS示例...
For simple custom CSS, you can just add it directly to your stylesheet.Example@tailwind base; @tailwind components; @tailwind utilities; .custom-button { background-color: #4a90e2; /* Custom background color */ border-radius: 12px; /* Custom border radius */ color: white; /* Custom ...