diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md b/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md
index d6018523f80ac752cc688cde2a30916eca818040..0ae90d5fe8561306dfe4c58de39b92b8ab103548 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md
@@ -293,12 +293,12 @@
| 名称 | 描述 |
| -------- | ------------------------------------------------------------ |
-| Auto | 使用Flex、GridRow容器中默认配置。 |
-| Start | 元素在Flex、GridRow容器中,交叉轴方向首部对齐。 |
-| Center | 元素在Flex、GridRow容器中,交叉轴方向居中对齐。 |
-| End | 元素在Flex、GridRow容器中,交叉轴方向底部对齐。 |
-| Stretch | 元素在Flex、GridRow容器中,交叉轴方向拉伸填充。容器为Flex且设置Wrap为FlexWrap.Wrap或FlexWrap.WrapReverse时,元素拉伸到与当前行/列交叉轴长度最长的元素尺寸。其余情况在元素未设置尺寸时,拉伸到容器尺寸。 |
-| Baseline | 元素在Flex、GridRow容器中,交叉轴方向文本基线对齐。 |
+| Auto | 使用Flex容器中默认配置。 |
+| Start | 元素在Flex容器中,交叉轴方向首部对齐。 |
+| Center | 元素在Flex容器中,交叉轴方向居中对齐。 |
+| End | 元素在Flex容器中,交叉轴方向底部对齐。 |
+| Stretch | 元素在Flex容器中,交叉轴方向拉伸填充。容器为Flex且设置Wrap为FlexWrap.Wrap或FlexWrap.WrapReverse时,元素拉伸到与当前行/列交叉轴长度最长的元素尺寸。其余情况在元素未设置尺寸时,拉伸到容器尺寸。 |
+| Baseline | 元素在Flex容器中,交叉轴方向文本基线对齐。 |
## FlexDirection
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-gridrow.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-gridrow.md
index 83f518f5d2488421e9c17ca7db240ccfee297721..3d7c072f312e48c4a668fe51a1be5ebe2f0213cf 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-gridrow.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-gridrow.md
@@ -130,7 +130,7 @@ GridRow(option?: {columns?: number | GridRowColumnOption, gutter?: Length | Gutt
| 名称 | 参数类型 | 描述 |
| ----------------------- | ----------------------------------- | ------------------------------------------- |
-| alignItems10+ | [ItemAlign](ts-appendix-enums.md#itemalign) | 设置GridRow中的GridCol垂直主轴方向对齐方式,默认值:ItemAlign.Start
说明:
在ItemAlign中,实际支持的参数枚举值仅为Start、Center、End、Stretch。
GridCol本身也可通过alignSelf([ItemAlign](ts-appendix-enums.md#itemalign))设置自身对齐方式。当上述两种对齐方式都设置时,以GridCol自身设置为准。
从API version 10开始,该接口支持在ArkTS卡片中使用。 |
+| alignItems10+ | ItemAlign | 设置GridRow中的GridCol垂直主轴方向对齐方式,默认值:ItemAlign.Start
**说明**:
ItemAlign支持的枚举:ItemAlign.Start、ItemAlign.Center、ItemAlign.End、ItemAlign.Stretch。
GridCol本身也可通过alignSelf([ItemAlign](ts-appendix-enums.md#itemalign))设置自身对齐方式。当上述两种对齐方式都设置时,以GridCol自身设置为准。
从API version 10开始,该接口支持在ArkTS卡片中使用。 |
## 事件