diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md b/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md
index a6c0b032ca3d1234898704a15d87358800f737e7..e14c0aee93857ea01cdec4f6e2843b273de28e97 100644
--- a/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md
+++ b/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md
@@ -33,7 +33,7 @@ Since API version 9, this API is supported in ArkTS widgets.
| Name | Type| Description |
| ---------- | -------- | ------------------------------------------------------------ |
-| allowScale | boolean | Whether to allow text to scale.
Default value: **false**
Since API version 9, this API is supported in ArkTS widgets.|
+| allowScale | boolean | Whether to allow text to scale.
This attribute is not supported currently.
Default value: **false** |
## Events
diff --git a/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md b/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md
index 77f136b9f2c9de3a7e59cb69c017ba33df6b6a10..d9199a9659f233da33e8f8200823dac138f71e8c 100644
--- a/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md
+++ b/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md
@@ -15,7 +15,7 @@ The **\** component is used for element alignment in complex
* Alignment modes in the vertical direction can be top, center, or bottom, achieved by the **VerticalAlign.Top**, **VerticalAlign.Center**, and **VerticalAlign.Bottom** attributes of the container, respectively.
* A child component can set the container or another child component as the anchor.
* To show in the **\**, child components must have an ID. The container ID is fixed at **__container__**.
- * Three positions of the child component in a direction can use three positions of the container or another child components in the same direction as anchors. If anchors are set for more than two positions in a single direction, the third position is skipped.
+ * Three positions on the child component in a specific direction can use as anchors three positions on the container or another child component in the same direction. If anchors are set for more than two positions in a single direction, then: Start and Center are preferred in the horizontal direction, and Top and Center are preferred in the vertical direction.
* The child component size set on the frontend page is not affected by the **\** rules. If two or more **alignRules** values are set for one direction of the child component, you are not advised to set the size for this direction.
* If offset is required after the alignment, it can be set through **offset**.
* Exceptions