diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/it/web/api/document/width | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/it/web/api/document/width')
-rw-r--r-- | files/it/web/api/document/width/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/files/it/web/api/document/width/index.html b/files/it/web/api/document/width/index.html new file mode 100644 index 0000000000..82756dbbc7 --- /dev/null +++ b/files/it/web/api/document/width/index.html @@ -0,0 +1,32 @@ +--- +title: document.width +slug: Web/API/Document/width +translation_of: Web/API/Document/width +--- +<div>{{APIRef("DOM")}}</div> + +<p>Restituisce la larghezza in pixel dell'elemento body del documento corrente.</p> + +<p>Non supportato da IE.</p> + +<h3 id="Sintassi" name="Sintassi">Sintassi</h3> + +<pre class="eval"><i>pixels</i> = document.width; +</pre> + +<h3 id="Esempio" name="Esempio">Esempio</h3> + +<pre class="eval">function init() { + alert("La larghezza del documento è di " + document.width + " pixel."); +} +</pre> + +<h3 id="Note" name="Note">Note</h3> + +<p>Si veda <code><a href="it/DOM/document.height">document.height</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.width" } ) }}</p> |