aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/htmlelement
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/htmlelement')
-rw-r--r--files/ru/web/api/htmlelement/contenteditable/index.html4
-rw-r--r--files/ru/web/api/htmlelement/hidden/index.html4
-rw-r--r--files/ru/web/api/htmlelement/offsetheight/index.html10
-rw-r--r--files/ru/web/api/htmlelement/offsetleft/index.html8
-rw-r--r--files/ru/web/api/htmlelement/offsettop/index.html10
-rw-r--r--files/ru/web/api/htmlelement/offsetwidth/index.html10
6 files changed, 23 insertions, 23 deletions
diff --git a/files/ru/web/api/htmlelement/contenteditable/index.html b/files/ru/web/api/htmlelement/contenteditable/index.html
index 12ea0709ce..38cb71dfbc 100644
--- a/files/ru/web/api/htmlelement/contenteditable/index.html
+++ b/files/ru/web/api/htmlelement/contenteditable/index.html
@@ -17,13 +17,13 @@ translation_of: Web/API/HTMLElement/contentEditable
<p>Вы можете использовать свойство {{domxref("HTMLElement.isContentEditable")}}, чтобы проверить {{domxref("Boolean")}} значение этого свойства.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><em>editable</em> = element.contentEditable
element.contentEditable = "true"
</pre>
-<h2 id="Specifications" name="Specifications">Спецификации</h2>
+<h2 id="Specifications">Спецификации</h2>
<table class="standard-table">
<thead>
diff --git a/files/ru/web/api/htmlelement/hidden/index.html b/files/ru/web/api/htmlelement/hidden/index.html
index 11f118c0a9..dff1f5764b 100644
--- a/files/ru/web/api/htmlelement/hidden/index.html
+++ b/files/ru/web/api/htmlelement/hidden/index.html
@@ -25,7 +25,7 @@ translation_of: Web/API/HTMLElement/hidden
<p>Элементы, которые не hidden не должны ссылаться на элементы которые hidden.</p>
</div>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><em>isHidden</em> = <em>HTMLElement</em>.hidden;
@@ -36,7 +36,7 @@ translation_of: Web/API/HTMLElement/hidden
<p>Если элемент спрятан, то значение <em><strong>true</strong></em>, в противном случае <em><strong>false</strong></em>;  </p>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<p>Пример, где скрытый блок используется для хранения "thank you" сообщения, которое отображается после того, как пользователь соглашается с необычным запросом.</p>
diff --git a/files/ru/web/api/htmlelement/offsetheight/index.html b/files/ru/web/api/htmlelement/offsetheight/index.html
index bd26064ef3..96862833fd 100644
--- a/files/ru/web/api/htmlelement/offsetheight/index.html
+++ b/files/ru/web/api/htmlelement/offsetheight/index.html
@@ -15,14 +15,14 @@ translation_of: Web/API/HTMLElement/offsetHeight
<p>This property will round the value to an integer. If you need a fractional value, use {{ domxref("element.getBoundingClientRect()") }}.</p>
</div>
-<h2 id="Syntax_and_values" name="Syntax_and_values">Syntax</h2>
+<h2 id="Syntax_and_values">Syntax</h2>
<pre class="eval">var <em>intElemOffsetHeight</em> = document.getElementById(<em>id_attribute_value</em>).offsetHeight;
</pre>
<p><em>intElemOffsetHeight</em> is a variable storing an integer corresponding to the offsetHeight pixel value of the element. The offsetHeight property is readonly.</p>
-<h2 id="Example" name="Example">Example</h2>
+<h2 id="Example">Example</h2>
<p> </p>
@@ -33,7 +33,7 @@ translation_of: Web/API/HTMLElement/offsetHeight
<p> </p>
-<h2 id="Specification" name="Specification">Specification</h2>
+<h2 id="Specification">Specification</h2>
<table class="standard-table">
<thead>
@@ -52,7 +52,7 @@ translation_of: Web/API/HTMLElement/offsetHeight
</tbody>
</table>
-<h3 id="Notes" name="Notes">Notes</h3>
+<h3 id="Notes">Notes</h3>
<p><code>offsetHeight</code> is a property of the DHTML object model which was first introduced by MSIE. It is sometimes referred to as an element's physical/graphical dimensions, or an element's border-box height.</p>
@@ -60,7 +60,7 @@ translation_of: Web/API/HTMLElement/offsetHeight
<p>{{Compat("api.HTMLElement.offsetHeight")}}</p>
-<h2 id="See_Also" name="See_Also">See Also</h2>
+<h2 id="See_Also">See Also</h2>
<ul>
<li>{{domxref("Element.clientHeight")}}</li>
diff --git a/files/ru/web/api/htmlelement/offsetleft/index.html b/files/ru/web/api/htmlelement/offsetleft/index.html
index ded2335950..aace6b67d7 100644
--- a/files/ru/web/api/htmlelement/offsetleft/index.html
+++ b/files/ru/web/api/htmlelement/offsetleft/index.html
@@ -11,14 +11,14 @@ translation_of: Web/API/HTMLElement/offsetLeft
<p>However, for inline-level elements (such as <strong>span</strong>) that can wrap from one line to the next, <code>offsetTop</code> and <code>offsetLeft</code> describe the positions of the <em>first</em> border box (use {{domxref("Element.getClientRects()")}} to get its width and height), while <code>offsetWidth</code> and <code>offsetHeight</code> describe the dimensions of the <em>bounding</em> border box (use {{domxref("Element.getBoundingClientRect()")}} to get its position). Therefore, a box with the left, top, width and height of <code>offsetLeft</code>, <code>offsetTop</code>, <code>offsetWidth</code> and <code>offsetHeight</code> will not be a bounding box for a span with wrapped text.</p>
-<h2 id="Syntax" name="Syntax">Syntax</h2>
+<h2 id="Syntax">Syntax</h2>
<pre class="eval notranslate"><var>left</var> = <var>element</var>.offsetLeft;
</pre>
<p><code><var>left</var></code> is an integer representing the offset to the left in pixels <em>from the closest relatively positioned</em> parent element.</p>
-<h2 id="Example" name="Example">Example</h2>
+<h2 id="Example">Example</h2>
<pre class="brush: js notranslate">var colorTable = document.getElementById("t1");
var tOLeft = colorTable.offsetLeft;
@@ -49,7 +49,7 @@ if (tOLeft &gt; 5) {
box.style.height = longspan.offsetHeight<span style="line-height: normal;"> + "px"</span><span style="line-height: normal;">;
</span><span style="line-height: normal;">&lt;/script&gt; </span></pre>
-<h2 id="Specification" name="Specification">Specification</h2>
+<h2 id="Specification">Specification</h2>
<table class="standard-table">
<thead>
@@ -74,7 +74,7 @@ if (tOLeft &gt; 5) {
<p>{{Compat("api.HTMLElement.offsetLeft")}}</p>
-<h2 id="See_also" name="See_also">See also</h2>
+<h2 id="See_also">See also</h2>
<ul>
<li>{{domxref("HTMLElement.offsetParent")}}, {{domxref("HTMLElement.offsetTop")}}, {{domxref("HTMLElement.offsetWidth")}}, {{domxref("HTMLElement.offsetHeight")}}</li>
diff --git a/files/ru/web/api/htmlelement/offsettop/index.html b/files/ru/web/api/htmlelement/offsettop/index.html
index e001d4e951..f5b5170132 100644
--- a/files/ru/web/api/htmlelement/offsettop/index.html
+++ b/files/ru/web/api/htmlelement/offsettop/index.html
@@ -9,18 +9,18 @@ translation_of: Web/API/HTMLElement/offsetTop
<p><strong><code>HTMLElement.offsetTop - </code></strong><code>свойство элемента доступно только для чтения,</code> возвращает расстояние текущего элемента по отношению к верхней части {{domxref("HTMLelement.offsetParent","offsetParent")}} узла.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><var>topPos</var> = element.offsetTop;
</pre>
-<h3 id="Parameters" name="Parameters">Параметры</h3>
+<h3 id="Parameters">Параметры</h3>
<ul>
<li><code>topPos</code> - <code>это количество пикселей на которые делается отступ сверху, отсносительно родительского элемента.</code></li>
</ul>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<pre class="brush:js">var d = document.getElementById("div1");
var topPos = d.offsetTop;
@@ -30,7 +30,7 @@ if (topPos &gt; 10) {
// чем 10 пикселей относительно своего родителя
}</pre>
-<h2 id="Specification" name="Specification">Спецификация</h2>
+<h2 id="Specification">Спецификация</h2>
<table class="standard-table">
<thead>
@@ -49,7 +49,7 @@ if (topPos &gt; 10) {
</tbody>
</table>
-<h2 id="Compatibility" name="Compatibility">Совместимость с браузерами</h2>
+<h2 id="Compatibility">Совместимость с браузерами</h2>
diff --git a/files/ru/web/api/htmlelement/offsetwidth/index.html b/files/ru/web/api/htmlelement/offsetwidth/index.html
index d39fed6fb1..0e4f659f31 100644
--- a/files/ru/web/api/htmlelement/offsetwidth/index.html
+++ b/files/ru/web/api/htmlelement/offsetwidth/index.html
@@ -7,7 +7,7 @@ translation_of: Web/API/HTMLElement/offsetWidth
<p>Свойство <code><strong>HTMLElement.offsetWidth</strong></code> возвращает ширину элемента. Как правило, <code>offsetWidth</code> — это значение, включающее горизонтальный отступ элемента, ширину вертикального скроллбара (если он есть) и CSS ширину.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox">var<em> offsetWidth</em> = <em>element</em>.offsetWidth;
</pre>
@@ -20,14 +20,14 @@ translation_of: Web/API/HTMLElement/offsetWidth
<p> </p>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<p> </p>
<p>             <img alt="Image:Dimensions-offset.png" class="internal" src="/@api/deki/files/186/=Dimensions-offset.png"></p>
-<h2 id="Specification" name="Specification">Спецификация</h2>
+<h2 id="Specification">Спецификация</h2>
<table class="standard-table">
<thead>
@@ -46,7 +46,7 @@ translation_of: Web/API/HTMLElement/offsetWidth
</tbody>
</table>
-<h3 id="Notes" name="Notes">Примечание</h3>
+<h3 id="Notes">Примечание</h3>
<p><code>offsetWidth — </code>свойство объектной модели <abbr title="Dynamic HyperText Markup Language">DHTML,</abbr> которое впервые было представлено в браузере MSIE. Его иногда называют физической/графической шириной или шириной блока элемента.</p>
@@ -54,7 +54,7 @@ translation_of: Web/API/HTMLElement/offsetWidth
<p>{{Compat("api.HTMLElement.offsetWidth")}}</p>
-<h2 id="See_also" name="See_also">Смотрите также</h2>
+<h2 id="See_also">Смотрите также</h2>
<ul>
<li>{{domxref("Element.clientWidth")}}</li>