Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: A1lo <[email protected]>
  • Loading branch information
jasonren0403 and yin1999 authored Jul 4, 2023
1 parent 8a31dcd commit d0a1e48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/zh-cn/web/guide/css/block_formatting_context/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ slug: Web/Guide/CSS/Block_formatting_context

下列方式会创建块格式化上下文:

- 文档级别的根元素`<html>`)。
- 文档的根元素`<html>`)。
- 浮动元素(即 {{ cssxref("float") }} 值不为 `none` 的元素)。
- 绝对定位元素({{ cssxref("position") }} 值为 `absolute``fixed` 的元素)。
- 行内块元素({{ cssxref("display") }} 值为 `inline-block` 的元素)。
Expand All @@ -30,7 +30,7 @@ slug: Web/Guide/CSS/Block_formatting_context
- 排除外部浮动。
- 阻止[外边距重叠](/zh-CN/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing)

> **备注:** flex/grid 容器({{ cssxref("display") }}:flex/grid/inline-flex/inline-grid)建立新的 flex/grid 格式上下文,除布局之外,它与块格式上下文类似。flex/grid 容器中没有可用的浮动子级,但排除外部浮动和阻止外边距重叠仍然有效。
> **备注:** 弹性/网格容器({{ cssxref("display") }}:flex/grid/inline-flex/inline-grid)建立新的弹性/网格格式化上下文,除布局之外,它与区块格式化上下文类似。弹性/网格容器中没有可用的浮动子级,但排除外部浮动和阻止外边距重叠仍然有效。
## 示例

Expand Down

0 comments on commit d0a1e48

Please sign in to comment.