Tailwind CSS 是一个实用程序优先的 CSS 框架,其中包含一些类,可以直接在标记中组合这些类来构建任何设计。
Tailwind css 是一个实用程序优先的 css 框架,它提供低级实用程序类来构建自定义设计,而无需编写 css。这种方法允许我们实现完全自定义的组件设计,而无需编写一行自定义 CSS。 “你不会浪费精力发明类名”.
这是从将在生产环境中使用的最终 CSS 文件中删除未使用的 CSS 类的过程。这是一个优化过程,最终的 CSS 尺寸更小,更易于维护并显示出更高的性能。
下划线:
underline underline-offset-<size> decoration-<color>-<shade> //color for underline decoration-<thickness> // size of underline decoration-<style> // wavy, double
文本样式
text-<color>-<shade> //color of text text-opacity-<shade> //opacity of text text-<size> //size of text text-<alignment> //alignment of text
背景颜色
bg-<color>-<shade>
边界半径
rounded-<size>
字体样式
font-<style> //mono, serif, sans font-bold font-thin
斜体:
italic
隐藏元素:
hidden
显示(与隐藏相反):
block
填充
p-<size> /* All sides */ px-<size> /* Horizontal (left and right) */ py-<size> /* Vertical (top and bottom) */ pl-<size> /* Left */ pr-<size> /* Right */ pt-<size> /* Top */ pb-<size> /* Bottom */
保证金
m-<size> /* All sides */ mx-<size> /* Horizontal (left and right) */ my-<size> /* Vertical (top and bottom) */ ml-<size> /* Left */ mr-<size> /* Right */ mt-<size> /* Top */ mb-<size> /* Bottom */
Flexbox
flex flex-<direction> // row or column
证明内容合理
justify-<option>
对齐项目
items-<option> //start,end,center
响应式设计
sm /* Small devices */ md /* Medium devices */ lg /* Large devices */ xl /* Extra large devices */
尺码
h-<size> w-<size>
边框
border border-<size> border-<color>
悬停状态
hover:<utility>
以上是Tailwind 命令备忘单的详细内容。更多信息请关注PHP中文网其他相关文章!