aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/documentorshadowroot/stylesheets/index.html
blob: 95f590715d7cc5a5ddc15de51734871763a0c839 (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
---
title: document.styleSheets
slug: Web/API/DocumentOrShadowRoot/styleSheets
tags:
  - DOM
  - Gecko
  - Reference_del_DOM_di_Gecko
  - Tutte_le_categorie
translation_of: Web/API/DocumentOrShadowRoot/styleSheets
translation_of_original: Web/API/Document/styleSheets
original_slug: Web/API/Document/styleSheets
---
<p>{{APIRef("DOM")}}</p>

<p>Restituisce una lista di oggetti <a href="it/DOM/stylesheet">stylesheet</a> per i fogli stile esplicitamente linkati o inclusi nel documento.</p>

<h3 id="Propriet.C3.A0" name="Propriet.C3.A0">Proprietà</h3>

<p><code>styleSheetList.length</code> - restituisce il numero di oggetti stylesheet contenuti nell'oggetto.</p>

<h3 id="Sintassi" name="Sintassi">Sintassi</h3>

<pre class="eval"><i>styleSheetList</i> =
<i>document</i>.styleSheets
</pre>

<p>L'oggetto restituito è di tipo <a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-DocumentStyle-styleSheets">StyleSheetList</a>.</p>

<p>E' una collezione ordinata di oggetti <a href="it/DOM/stylesheet">stylesheet</a>. <code>
 <i>styleSheetList</i>
 .item(

 <i>indice</i>
 )</code> o semplicemente <code>
 <i>styleSheetList</i>
 {{ mediawiki.external('

 <i>indice</i>
 ') }}</code> restituisce un singolo oggetto stylesheet indicato dall'indice (<code>indice</code> comincia da 0).</p>

<h3 id="Specifiche" name="Specifiche">Specifiche</h3>

<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-DocumentStyle-styleSheets">DOM Level 2 Style: styleSheets</a></p>

<p>{{ languages( { "ja": "ja/DOM/document.styleSheets", "pl": "pl/DOM/document.styleSheets" } ) }}</p>