aboutsummaryrefslogtreecommitdiff
path: root/files/uk/web/api/htmlelement/offsettop/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/uk/web/api/htmlelement/offsettop/index.html')
-rw-r--r--files/uk/web/api/htmlelement/offsettop/index.html60
1 files changed, 0 insertions, 60 deletions
diff --git a/files/uk/web/api/htmlelement/offsettop/index.html b/files/uk/web/api/htmlelement/offsettop/index.html
deleted file mode 100644
index 9bafdc485c..0000000000
--- a/files/uk/web/api/htmlelement/offsettop/index.html
+++ /dev/null
@@ -1,60 +0,0 @@
----
-title: HTMLElement.offsetTop
-slug: Web/API/HTMLElement/offsetTop
-translation_of: Web/API/HTMLElement/offsetTop
----
-<div>
-<div>{{ APIRef("HTML DOM") }}</div>
-
-<div>Властивість лише для зчитування <strong><code>HTMLElement.offsetTop</code></strong> повертає відстань від поточного елемента відносно верху {{domxref("HTMLelement.offsetParent","offsetParent")}} .</div>
-</div>
-
-<h2 id="Syntax" name="Syntax">Синтакс</h2>
-
-<pre class="syntaxbox"><var>topPos</var> = element.offsetTop;
-</pre>
-
-<h3 id="Parameters" name="Parameters">Параметри</h3>
-
-<ul>
- <li><code>topPos</code> це кількість пікселів від верху <em>найближчого відносно зпозиціонованого</em> батьківського елементу.</li>
-</ul>
-
-<h2 id="Example" name="Example">Приклад</h2>
-
-<pre class="brush:js">var d = document.getElementById("div1");
-var topPos = d.offsetTop;
-
-if (topPos &gt; 10) {
- // object is offset more
- // than 10 pixels from its parent
-}</pre>
-
-<h2 id="Specification" name="Specification">Специфікація</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Специфіуація</th>
- <th scope="col">Статус</th>
- <th scope="col">Коментар</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('CSSOM View', '#dom-htmlelement-offsettop', 'offsetTop')}}</td>
- <td>{{Spec2('CSSOM View')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Compatibility" name="Compatibility">Браузерна сумісність</h2>
-
-
-
-<p>{{Compat("api.HTMLElement.offsetTop")}}</p>
-
-<p>In compliance with the specification, this property will return <code>null</code> on Webkit if the element is hidden (the <code>style.display</code> of this element or any ancestor is <code>"none"</code>) or if the <code>style.position</code> of the element itself is set to <code>"fixed"</code>.</p>
-
-<p>This property will return <code>null</code> on Internet Explorer (9) if the <code>style.position</code> of the element itself is set to <code>"fixed"</code>. (Having <code>display:none</code> does not affect this browser.)</p>