diff --git a/docs/commands/element/moveTo.mdx b/docs/commands/element/moveTo.mdx
index c5aaec2..d8616de 100644
--- a/docs/commands/element/moveTo.mdx
+++ b/docs/commands/element/moveTo.mdx
@@ -17,12 +17,29 @@ await browser.$(selector).moveTo({ xOffset, yOffset });
## Параметры команды {#parameters}
-
-**Имя** | **Тип** | **Описание** |
-
-
-xOffset | Number | Смещение по оси X. Задается относительно верхнего левого угла элемента. Если не указано, мышь переместится в середину элемента. |
-yOffset | Number | Смещение по оси Y. Задается относительно верхнего левого угла элемента. Если не указано, мышь переместится в середину элемента. |
-
-
+
+
+ **Имя** |
+ **Тип** |
+ **Описание** |
+
+
+
+
+ xOffset |
+ Number |
+
+ Смещение по оси X. Задается относительно центра элемента. Если не указано, мышь
+ переместится в середину элемента.
+ |
+
+
+ yOffset |
+ Number |
+
+ Смещение по оси Y. Задается относительно центра элемента. Если не указано, мышь
+ переместится в середину элемента.
+ |
+
+
diff --git a/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx b/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx
index 165d22e..5b1c8b9 100644
--- a/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx
+++ b/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx
@@ -17,14 +17,31 @@ await browser.$(selector).moveTo({ xOffset, yOffset });
## Command Parameters {#parameters}
-
-**Name** | **Type** | **Description** |
-
-
-xOffset | Number | The X-axis offset relative to the top-left corner of the element. If not specified, the mouse will move to the middle of the element. |
-yOffset | Number | The Y-axis offset relative to the top-left corner of the element. If not specified, the mouse will move to the middle of the element. |
-
-
+
+
+ **Name** |
+ **Type** |
+ **Description** |
+
+
+
+
+ xOffset |
+ Number |
+
+ The X-axis offset relative to the middle of the element. If not specified, the mouse
+ will move to the middle of the element.
+ |
+
+
+ yOffset |
+ Number |
+
+ The Y-axis offset relative to the middle of the element. If not specified, the mouse
+ will move to the middle of the element.
+ |
+
+
## References