aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/clientheight/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-28 23:16:41 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-03-08 23:45:59 +0900
commitfcaf278de3a2d71b1a94cabdaa934b895b3916bf (patch)
treee6c1c736008640aa80f58b490fd3c856b76b66db /files/ja/web/api/element/clientheight/index.html
parent6a0af615e351a75f1c837bf88d90b34ba81bf463 (diff)
downloadtranslated-content-fcaf278de3a2d71b1a94cabdaa934b895b3916bf.tar.gz
translated-content-fcaf278de3a2d71b1a94cabdaa934b895b3916bf.tar.bz2
translated-content-fcaf278de3a2d71b1a94cabdaa934b895b3916bf.zip
Element 以下のプロパティの記事を移行
Diffstat (limited to 'files/ja/web/api/element/clientheight/index.html')
-rw-r--r--files/ja/web/api/element/clientheight/index.html67
1 files changed, 0 insertions, 67 deletions
diff --git a/files/ja/web/api/element/clientheight/index.html b/files/ja/web/api/element/clientheight/index.html
deleted file mode 100644
index 4cde36518d..0000000000
--- a/files/ja/web/api/element/clientheight/index.html
+++ /dev/null
@@ -1,67 +0,0 @@
----
-title: Element.clientHeight
-slug: Web/API/Element/clientHeight
-tags:
- - API
- - CSSOM View
- - NeedsMarkupWork
- - Property
- - Reference
-translation_of: Web/API/Element/clientHeight
----
-<div>{{APIRef("DOM")}}</div>
-
-<p><strong><code>Element.clientHeight</code></strong> は読み取り専用のプロパティで、 CSS のない要素やインラインレイアウトボックスではゼロになります。それ以外では、要素の内側の寸法をピクセル単位で表します。パディングは含みますが、境界、マージン、 (もしあれば) 水平スクロールバーは含みません。</p>
-
-<p><code>clientHeight</code> は CSS <code>height</code> + CSS <code>padding</code> - 水平スクロールバーの高さ(height) (もしあれば) として計算できます。</p>
-
-<p><code>clientHeight</code> がルート要素 (<code>&lt;html&gt;</code> 要素) (または文書が後方互換モードである場合は <code>&lt;body&gt;</code>) に使用された場合、 (スクロールバーを除いた) ビューポートの高さが返されます。<a href="https://www.w3.org/TR/2016/WD-cssom-view-1-20160317/#dom-element-clientheight">これは <code>clientHeight</code> の特例です</a>。</p>
-
-<div class="note">
-<p><strong>注:</strong> このプロパティは値を整数値に丸めます。小数値が必要であれば、 {{ domxref("element.getBoundingClientRect()") }} を使用してください。</p>
-</div>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox notranslate">var <var>intElemClientHeight</var> = <var>element</var>.clientHeight;</pre>
-
-<p><code><var>intElemClientHeight</var></code> は <code><var>element</var></code> の <code>clientHeight</code> をピクセル単位で表す整数値です。 <code>clientHeight</code> プロパティは読み取り専用です。</p>
-
-<h2 id="Example" name="Example">例</h2>
-
-<p><img alt="Image:Dimensions-client.png" class="internal" src="/@api/deki/files/185/=Dimensions-client.png"></p>
-
-<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-element-clientheight', 'clientHeight')}}</td>
- <td>{{Spec2("CSSOM View")}}</td>
- <td></td>
- </tr>
- </tbody>
-</table>
-
-<h3 id="Notes" name="Notes">注</h3>
-
-<p><code>clientHeight</code> は Internet Explorer オブジェクトモデルで導入されたプロパティです。</p>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.Element.clientHeight")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>{{domxref("HTMLElement.offsetHeight")}}</li>
- <li>{{domxref("Element.scrollHeight")}}</li>
- <li><a href="/ja/docs/Web/API/CSS_Object_Model/Determining_the_dimensions_of_elements">要素の寸法の決定</a></li>
-</ul>