aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlelement/offsetparent/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/htmlelement/offsetparent/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/htmlelement/offsetparent/index.html')
-rw-r--r--files/ja/web/api/htmlelement/offsetparent/index.html63
1 files changed, 63 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlelement/offsetparent/index.html b/files/ja/web/api/htmlelement/offsetparent/index.html
new file mode 100644
index 0000000000..a2e338f0f5
--- /dev/null
+++ b/files/ja/web/api/htmlelement/offsetparent/index.html
@@ -0,0 +1,63 @@
+---
+title: HTMLElement.offsetParent
+slug: Web/API/HTMLElement/offsetParent
+tags:
+ - API
+ - CSSOM View
+ - NeedsMarkupWork
+ - Property
+ - Reference
+ - プロパティ
+translation_of: Web/API/HTMLElement/offsetParent
+---
+<p>{{ APIRef("HTML DOM") }}</p>
+
+<p><strong><code>HTMLElement.offsetParent</code></strong> は読み取り専用プロパティで、要素を含む最も近くにある (包含階層で最も近い) 位置指定されたオブジェクトへの参照を返します。要素が位置指定されていない (静的位置指定の) 場合、最も近い祖先である <code>td</code>, <code>th</code>, <code>table</code> を返し、表要素の祖先がない場合は <code>body</code> を返します。</p>
+
+<div class="blockIndicator note">
+<p><strong>注: </strong></p>
+
+<p><strong>次の状況では、<code>offsetParent</code> は <code>null</code> を返します。</strong></p>
+
+<ul>
+ <li>要素またはその親要素の <code>display</code> プロパティが <code>none</code> に設定されている。</li>
+ <li>要素の <code>position</code> プロパティが <code>fixed</code> (固定位置指定) に設定されている (firefox は <code>&lt;body&gt;</code> を返します)。</li>
+ <li>要素が <code>&lt;body&gt;</code> または <code>&lt;html&gt;</code> 要素である。</li>
+</ul>
+</div>
+
+<p><code>offsetParent</code> が有用なのは、 {{domxref("HTMLElement.offsetTop","offsetTop")}} と {{domxref("HTMLElement.offsetLeft","offsetLeft")}} がパディング境界からの相対だからです。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate"><var>parentObj</var> = <var>element</var>.offsetParent;
+</pre>
+
+<ul>
+ <li><code><var>parentObj</var></code> は、現在の要素がオフセットされている要素へのオブジェクト参照です。</li>
+</ul>
+
+<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-offsetparent', 'offsetParent')}}</td>
+ <td>{{Spec2('CSSOM View')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("api.HTMLElement.offsetParent")}}</p>