diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-20 13:28:52 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 13:28:52 +0300 |
commit | 1386fed7d38652d5848d315927e7e23a66cffd13 (patch) | |
tree | eb4b9adfec3f46c77304a1b9461d44357c8164c8 /files/ru/web/api/window/scrollbylines/index.html | |
parent | b0f32a46245b1033098a5a9826a7818fa4e65dde (diff) | |
download | translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.gz translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.bz2 translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.zip |
[RU] Remove `name` attribute from headings (#2788)
Diffstat (limited to 'files/ru/web/api/window/scrollbylines/index.html')
-rw-r--r-- | files/ru/web/api/window/scrollbylines/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ru/web/api/window/scrollbylines/index.html b/files/ru/web/api/window/scrollbylines/index.html index 6f2c178a2b..4d357d4798 100644 --- a/files/ru/web/api/window/scrollbylines/index.html +++ b/files/ru/web/api/window/scrollbylines/index.html @@ -9,23 +9,23 @@ translation_of: Web/API/Window/scrollByLines <p id="comment_text_2">{{Non-standard_header}}</p> </div> -<h2 id="Summary" name="Summary">Summary</h2> +<h2 id="Summary">Summary</h2> <p>Прокручивает документ на заданное число строк.</p> -<h2 id="Syntax" name="Syntax">Syntax</h2> +<h2 id="Syntax">Syntax</h2> <pre class="syntaxbox">window.scrollByLines(<var>lines</var>) </pre> -<h2 id="Parameters" name="Parameters">Parameters</h2> +<h2 id="Parameters">Parameters</h2> <ul> <li><code>lines</code> — число линий, на которое надо прокрутить документ.</li> <li><code>lines</code> может быть положительным или отрицательным целым числом.</li> </ul> -<h2 id="Example" name="Example">Example</h2> +<h2 id="Example">Example</h2> <pre class="brush:html"><!-- прокручивает страницу вниз на 5 линий. --> <button onclick="scrollByLines(5);">down 5 lines</button> @@ -35,11 +35,11 @@ translation_of: Web/API/Window/scrollByLines <button onclick="scrollByLines(-5);">up 5 lines</button> </pre> -<h2 id="Specification" name="Specification">Specification</h2> +<h2 id="Specification">Specification</h2> <p id="comment_text_2">Не является частью спецификации</p> -<h2 id="See_also" name="See_also">See also</h2> +<h2 id="See_also">See also</h2> <ul> <li>{{domxref("window.scrollBy")}}, {{domxref("window.scrollByPages")}}</li> |