经典常用配置
大小类
- w-{size}:设置元素宽度,例如 w-1/2 表示元素宽度为父容器宽度的一半。
- h-{size}:设置元素高度,例如 h-16 表示元素高度为 16 像素。
- max-w-{size}:设置元素最大宽度,例如 max-w-md 表示元素最大宽度为中等屏幕大小。
- max–h-{size}:设置元素最大高度,例如 max–h–screen 表示元素最大高度为屏幕高度。
- min-w-{size}:设置元素最小宽度,例如 min-w-0 表示元素最小宽度为 0。
- min-h-{size}:设置元素最小高度,例如 min-h-full 表示元素最小高度为 100%。
文本类
- text-{color}:设置文本颜色,例如 text–red-500 表示文本颜色为红色 500。
- text-{size}:设置文本大小,例如 text–sm 表示文本大小为小号字体。
- font-{family}:设置字体系列,例如 font–sans 表示使用无衬线字体。
- font-{weight}:设置字体粗细,例如 font–bold 表示使用粗体字体。
- leading-{size}:设置行间距,例如 leading-6 表示行间距为 6。
背景类
- bg-{color}:设置背景颜色,例如 bg–gray-300 表示使用灰色背景。
- bg-{image}:设置背景图片,例如 bg–cover 表示使用覆盖整个元素的背景图片。
- bg-{position}:设置背景位置,例如 bg–center 表示将背景图像居中对齐。
- bg-{size}:设置背景尺寸,例如 bg–auto 表示使用原始背景图像大小。
边框和轮廓类
- border-{color}:设置边框颜色,例如 border–red-500 表示使用红色边框。
- border-{size}:设置边框大小,例如 border-2 表示边框宽度为 2 像素。
- border-{side}:设置边框位置,例如 border-l 表示只在元素左侧添加边框。
- rounded-{size}:设置圆角大小,例如 rounded–full 表示使用完全圆角。
Typography
标准文本处理
三大字体家族
font-sans font-serif font-mono
字体磅值
font-thin
font-light
font-normal
font-bold
font-extrabold
font-black
字符变体(不同的变体呈现不同的字符状态)
ordinal
slashed-zero
oldstyle-nums
letter–spacing
tracking-tight
tracking-normal
tracking-wide
强制字符串分成几行来显示
line-clamp-3
line-clamp-none
列表处理
li 标签前面显示的序号样式(数字、黑点、无样式)
list-decimal
list-disc
list-none
文本
文本颜色(斜杠后的数字表示透明度,透明度 0-100)
text-transparent
text-inherit
text-slate-50
text-blue-600/25
文本装饰
underline
overline
line-through
文本装饰对应的颜色
decoration-blue
文本装饰样式
decoration-solid
decoration-double
decoration-dotted
decoration-dashed
decoration-wavy
text overflow
truncate
text-ellipsis
text-clip
背景 Background
三大 attachment
bg-fixed
bg-local
bg-scroll
clip(使用 clip-text 打造渐变文本!)
bg-clip-content
bg-clip-text
position(背景图聚焦位置)
bg-bottom
bg-top
background–repeat
bg-repeat
bg-no-repeat
bg-repeat-x
bg-repeat-y
bg-repeat-round
bg-repeat-space
background–size
bg-auto
bg-cover
bg-contain
背景渐变色
如下代码表示:渐变色从左到右(to-r),左颜色为 cyan-500,右颜色为 blue-500
<div class="h-14 bg-gradient-to-r from-cyan-500 to-blue-500"></div>
Border
ring 一种浅色投影效果
ring-0
ring-white
ring-offset-0
Effects
box–shadow
shadow-sm
shadow-md
shadow-lg
shadow-xl
shadow-none
过滤器 Filters
模糊 blur-0
饱和度 saturate-50
过渡与动画 Transition
全部过渡 transition-all
几个预制好的动画
animate-spin
加载环动画
animate-ping
新消息圆点跳动
animate-pulse
骨架屏加载脉冲
animate-bounce
弹跳
大小设置 sizing
最小宽度
min-w-min
min-w-max
min-w-full
间距 spacing
padding
p-0
px-0
x 表示左右
py-0
y 表示上下
px-px
表示左右间隔 1px
专用于设置 space-between 间距的样式
space-x-0
space-y-0
弹性布局 Flexing&Grid
Flex 常用设置
flex
flex-col
flex-row
flex-wrap flex-nowrap
justify-center
items-center
grow-0
shrink-0
其他
gap-x-px
左右间距 1px
content-center
设置 align–center 居中
布局 layout
怪异盒模型 box-border
标准盒模型 box-content
剩下的就是一些 display float clear overflow position 这些,都是直接原单词拿来就用,这里不做介绍
原文地址:https://blog.csdn.net/delete_you/article/details/129965712
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_39308.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!