aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlelement/offsetparent/index.html
blob: a2e338f0f56925649a8bf321719b42f5a11d7d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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>