diff --git a/files/zh-cn/web/api/htmltablesectionelement/align/index.md b/files/zh-cn/web/api/htmltablesectionelement/align/index.md
index 2d26c2368c7257..b711d0afb03b35 100644
--- a/files/zh-cn/web/api/htmltablesectionelement/align/index.md
+++ b/files/zh-cn/web/api/htmltablesectionelement/align/index.md
@@ -7,10 +7,10 @@ l10n:
{{APIRef("HTML DOM")}}{{deprecated_header}}
-{{domxref("HTMLTableSectionElement")}} 接口的 **`align`** 属性是一个指示如何在 {{htmlelement("thead")}}、{{htmlelement("tbody")}} 或 {{htmlelement("tfoot")}} 表格部分水平对齐文本字符串,单个行和单元格可以覆盖它。
+{{domxref("HTMLTableSectionElement")}} 接口的 **`align`** 属性是一个指示如何在 {{htmlelement("thead")}}、{{htmlelement("tbody")}} 或 {{htmlelement("tfoot")}} 表格部分水平对齐文本的字符串,单个行和单元格可以覆盖它。
> [!NOTE]
-> 此属性已废弃,且应使用 CSS 在单元格中水平对齐文本。使用 CSS {{cssxref("text-align")}} 属性,其优先水平对齐单元格中文本。
+> 此属性已弃用,应使用 CSS 在单元格中水平对齐文本。使用 CSS {{cssxref("text-align")}} 属性,其用于水平对齐单元格中文本,且优先级更高。
## 值
diff --git a/files/zh-cn/web/api/htmltablesectionelement/ch/index.md b/files/zh-cn/web/api/htmltablesectionelement/ch/index.md
index fd52a5a7e81fe8..42871e94630e90 100644
--- a/files/zh-cn/web/api/htmltablesectionelement/ch/index.md
+++ b/files/zh-cn/web/api/htmltablesectionelement/ch/index.md
@@ -10,7 +10,9 @@ l10n:
{{domxref("HTMLTableSectionElement")}} 接口的 **`ch`** 属性什么都不做,它反映 section 元素的 `char` 属性。
> [!NOTE]
-> 此属性旨在支持将表格单元格内容对齐到特定字符(通常是小数点),但浏览器从未实现过。要实现这种对齐,请注意字符串值对 {{cssxref("text-align")}} CSS 属性的支持。
+> 此属性旨在支持将表格单元格内容对齐到特定字符(通常是小数点),但浏览器从未实现过。
+>
+> 要实现这种对齐,请注意 {{cssxref("text-align")}} CSS 属性对字符串值的支持。
## 值
diff --git a/files/zh-cn/web/api/htmltablesectionelement/choff/index.md b/files/zh-cn/web/api/htmltablesectionelement/choff/index.md
index 31ef4d6d5c31cf..904ac628d2b597 100644
--- a/files/zh-cn/web/api/htmltablesectionelement/choff/index.md
+++ b/files/zh-cn/web/api/htmltablesectionelement/choff/index.md
@@ -10,7 +10,9 @@ l10n:
{{domxref("HTMLTableSectionElement")}} 接口的 **`chOff`** 属性什么都不做,它反映 section 元素的 `charoff` 属性。
> [!NOTE]
-> 此属性旨在支持将表格单元格内容对齐到特定字符(通常是小数点),但浏览器从未实现过。要实现这种对齐,请注意字符串值对 {{cssxref("text-align")}} CSS 属性的支持。
+> 此属性旨在支持将表格单元格内容对齐到特定字符(通常是小数点),但浏览器从未实现过。
+>
+> 要实现这种对齐,请注意 {{cssxref("text-align")}} CSS 属性对字符串值的支持。
## 值
diff --git a/files/zh-cn/web/api/htmltablesectionelement/deleterow/index.md b/files/zh-cn/web/api/htmltablesectionelement/deleterow/index.md
index 2aad63317cfb53..6a4b0ab18a683d 100644
--- a/files/zh-cn/web/api/htmltablesectionelement/deleterow/index.md
+++ b/files/zh-cn/web/api/htmltablesectionelement/deleterow/index.md
@@ -7,7 +7,7 @@ l10n:
{{APIRef("HTML DOM")}}
-{{domxref("HTMLTableSectionElement")}} 接口的 **`deleteRow()`** 方法从给定的 {{HtmlElement("section")}} 中移除一个特殊行({{HtmlElement("tr")}})。
+{{domxref("HTMLTableSectionElement")}} 接口的 **`deleteRow()`** 方法从给定的 {{HtmlElement("section")}} 中移除特定的行({{HtmlElement("tr")}})。
## 语法
@@ -18,20 +18,20 @@ deleteRow(index)
### 参数
- `index`
- - : `index` 是一个表示应该删除行的整数。然而,特殊索引 `-1` 可以用于删除该部分的最后一行。
+ - : `index` 是一个表示应该删除行的整数。然而,特殊索引 `-1` 可以用于删除当前分段的最后一行。
### 返回值
-无 ({{jsxref("undefined")}})。
+无({{jsxref("undefined")}})。
### 异常
- `IndexSizeError` {{domxref("DOMException")}}
- - : 如果 `index` 大于等于行数或小于 `-1`,则抛出异常。
+ - : 如果 `index` 大于等于行数或小于 `-1`,则抛出该异常。
## 示例
-在这个示例中,有两个按钮允许你从表格主体添加和移除行,它还使用表中当前行数更新 {{HTMLElement("output")}} 元素。
+在这个示例中,有两个按钮允许你对表格主体添加和移除行,它还使用表中当前行数更新 {{HTMLElement("output")}} 元素。
### HTML
@@ -107,7 +107,7 @@ removeButton.addEventListener("click", () => {
});
```
-### Result
+### 结果
{{EmbedLiveSample("示例", "100%", 175)}}
diff --git a/files/zh-cn/web/api/htmltablesectionelement/index.md b/files/zh-cn/web/api/htmltablesectionelement/index.md
index 5b62f523fe4992..45b77ab4fb8f6c 100644
--- a/files/zh-cn/web/api/htmltablesectionelement/index.md
+++ b/files/zh-cn/web/api/htmltablesectionelement/index.md
@@ -16,7 +16,7 @@ l10n:
_从其父接口 {{domxref("HTMLElement")}} 继承属性。_
- {{domxref("HTMLTableSectionElement.align")}} {{deprecated_inline}}
- - : 一个包含枚举值反映 [`align`](/zh-CN/docs/Web/HTML/Element/tr#align) 属性的字符串,其指示元素内容相对于周围上下文的对齐方式,可能的值有:`"left"`、`"right"` 和 `"center"`。
+ - : 一个反映 [`align`](/zh-CN/docs/Web/HTML/Element/tr#align) 属性的字符串枚举值。其指示元素内容相对于周围上下文的对齐方式,可能的值有:`"left"`、`"right"` 和 `"center"`。
- {{domxref("HTMLTableSectionElement.rows")}} {{ReadOnlyInline}}
- : 返回包含 section 中行的实时 {{domxref("HTMLCollection")}},此 `HTMLCollection` 是实时的,且当行添加或删除时自动更新。
- {{domxref("HTMLTableSectionElement.ch")}} {{deprecated_inline}}