Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBlandy committed Dec 7, 2024
1 parent 4098e90 commit d47101e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions Css/css-style-字体.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@
* 字型(typeface)和字体(font)这两个术语经常被混为一谈。
* 字型通常是指字体(比如Roboto)的整个家族,一般由同一个设计师创造。
* 一种字型可能会存在多种变体和字重(比如细体、粗体、斜体、压缩,等等),这些变体的每一种可称之为一种字体(font)。
* 参考
https://developer.mozilla.org/zh-CN/docs/Web/CSS/@font-face


* 自定义字体
* 中文的字体文件很大,使用完整的字体文件不现实,通常针对某几个文字进行单独定制。
* 可使用阿里 Web 字体定制工具:https://www.iconfont.cn/fonts/index

--------------------
谷歌字体托管服务
Expand Down
2 changes: 1 addition & 1 deletion Css/css-style-转换.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
skew(30deg, 20deg);
skewX(30deg);
skewY(1.07rad);
* 倾斜
* 倾斜(扭曲)

matrix3d(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);

Expand Down
7 changes: 4 additions & 3 deletions Css/css-布局-grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ grid 基本概念
* 如果不希望出现空的网格轨道,可以使用 auto-fit 关键字代替 auto-fill, 它会让非空的网格轨道扩展,填满可用空间

* 二者区别只在于单行时对剩余空间的处理,只有行的宽度大到能够容纳额外的列时,auto-fill 和 auto-fit 这两者的区别才会体现出来。
* fill 是有足够空间就创建空白列,剩余不到一列时才均分该剩余空间
* fit 是直接均分剩余空间
* fill 是有足够空间就创建空白列,剩余不到一列时才均分该剩余空间
* fit 剩余空间会平均分配给子元素,内容区自动拉伸以便占满一整行;

* 按照比例的划分,为了方便表示比例关系,网格布局提供了fr关键字(fraction 的缩写,意为"片段"
* 如果两列的宽度分别为1fr和2fr,就表示后者是前者的两倍。
Expand Down Expand Up @@ -228,7 +228,8 @@ grid 基本概念
* 表示 '先列后行',并且尽量填满空格。

* grid-auto-flow: dense 等价于 grid-auto-flow: row dense。(前者隐含了row,因为初始值就是row。)
* 紧凑(dense)的 auto-flow 方式会导致元素出现的顺序跟HTML里不一致。当使用键盘(Tab键)或者使用以源码顺序而非以显示顺序为准的屏幕阅读器来浏览网页时,用户可能会感到困惑。
* 紧凑(dense)的 auto-flow 方式会导致元素出现的顺序跟HTML里不一致(可能会改变元素的摆放顺序,尽量紧凑嘛)。
* 当使用键盘(Tab键)或者使用以源码顺序而非以显示顺序为准的屏幕阅读器来浏览网页时,用户可能会感到困惑。


# 单元格内容的水平位置
Expand Down
3 changes: 3 additions & 0 deletions GIT/GIT-入门.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
* 多用命令行,少整UI.更专业,更牛逼.你会Linux,不要怂.
* ssh
* 协同方式

# 学习
https://learngitbranching.js.org/?locale=zh_CN

------------------------
Git-工作模型 |
Expand Down

0 comments on commit d47101e

Please sign in to comment.