aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/height/index.html
diff options
context:
space:
mode:
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>