hhstore / blog

My Tech Blog: about Mojo / Rust / Golang / Python / Kotlin / Flutter / VueJS / Blockchain etc.
https://github.com/hhstore/blog/issues
276 stars 22 forks source link

Web Frontend: CSS - Tailwind CSS #402

Open hhstore opened 1 year ago

hhstore commented 1 year ago

related:

hhstore commented 1 year ago

前端流行样式方案: Tailwind CSS

cheatsheet:

hhstore commented 1 year ago

Tailwind 常用样式:

hhstore commented 1 year ago

布局: Layout

Flex:

行: Row

<div class="flex flex-row ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

列: Column

<div class="flex flex-col ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

网格: Grid

hhstore commented 1 year ago

配色卡: Color

背景色:

元素边框颜色:

hhstore commented 1 year ago

尺寸表:

w-full

w-screen
hhstore commented 1 year ago

元素对齐方式:

空白符(间距):

Padding:

Margin:

space:

gap:

hhstore commented 1 year ago

文本/字体: text/font

加粗:

font-bold
hhstore commented 1 year ago

分割线:

hhstore commented 1 year ago

元素特效: Transition/Transform

翻转:

hhstore commented 1 year ago

滚动条:

边框:

hhstore commented 1 year ago

icon: