Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
sindorei committed Nov 15, 2024
1 parent b600652 commit 7d3c261
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/common/docker/nodejs_image.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# NodeJs官方镜像

## node:<version>
## `node:<version>`
- 基于Debian,官方默认镜像。当你不确定你需要什么的时候选择这个就对了。这个被设计成可以丢弃的镜像,也就是可以用作构建源码使用。体积挺大。

## node:<version>-slim
## `node:<version>-slim`
- 基于Debian, 删除了很多默认公共的软件包,只有node运行的最小环境。除非你有空间限制,否则推荐使用默认镜像。

## node:<version>-alpine
## `node:<version>-alpine`
- 基于alpine, 比Debian小的多。如果想要最小的镜像,可以选择这个做为base。需要注意的是,alpine使用musl代替glibc。一些c环境的软件可能不兼容。但大部分没问题。
alpine中安装软件使用`apk`

Expand Down
4 changes: 2 additions & 2 deletions docs/frontend/css/flex.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ flex-basis 属性的语法规则:

`flex-basis: content | <width>`

该属性的默认值是 auto ,它可以接受 content 和 <width> 值。
该属性的默认值是 auto ,它可以接受 content 和 `<width>` 值。

<width> 值指的是 CSS 的 width 属性(尺寸属性),可用于 width 属性的值都可以用
`<width>` 值指的是 CSS 的 width 属性(尺寸属性),可用于 width 属性的值都可以用
于 flex-basis ,比如我们熟悉的 px 、% 、vw 等,以及需要根据内容自动计算的属性
值,比如 min-content 、max-content 和 fit-content 等。

Expand Down

0 comments on commit 7d3c261

Please sign in to comment.