aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/height/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
commitda78a9e329e272dedb2400b79a3bdeebff387d47 (patch)
treee6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/it/web/api/document/height/index.html
parent1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff)
downloadtranslated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip
initial commit
Diffstat (limited to 'files/it/web/api/document/height/index.html')
-rw-r--r--files/it/web/api/document/height/index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/files/it/web/api/document/height/index.html b/files/it/web/api/document/height/index.html
new file mode 100644
index 0000000000..ee517b6c39
--- /dev/null
+++ b/files/it/web/api/document/height/index.html
@@ -0,0 +1,35 @@
+---
+title: document.height
+slug: Web/API/Document/height
+translation_of: Web/API/Document/height
+---
+<div>{{APIRef("DOM")}}</div>
+
+<p>Restituisce l'altezza in pixel dell'elemento body del documento corrente.</p>
+
+<h3 id="Syntax" name="Syntax">Syntax</h3>
+
+<pre class="eval"><i>height_value</i> = document.height
+</pre>
+
+<h3 id="Parametri" name="Parametri">Parametri</h3>
+
+<ul>
+ <li><code>height_value</code> è il numero di pixel</li>
+</ul>
+
+<h3 id="Esempio" name="Esempio">Esempio</h3>
+
+<pre class="eval">// visualizza l'altezza del documento
+alert(document.height);
+</pre>
+
+<h3 id="Note" name="Note">Note</h3>
+
+<p>Si veda <code><a href="it/DOM/document.width">document.width</a></code>.</p>
+
+<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
+
+<p>DOM Level 0. Non è parte di uno standard.</p>
+
+<p>{{ languages( { "pl": "pl/DOM/document.height" } ) }}</p>