blob: bd8837d21708080a72c8a553a1a0b70ffa646951 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
---
title: CssRule
slug: Web/API/CSSRule
translation_of: Web/API/CSSRule
---
<p>{{ ApiRef("CSSOM") }}</p>
<p>El objeto <code>CSSRule </code>representa una única regla de estilo CSS. Puede ser parte de una lista <a href="/Es/DOM/Stylesheet.cssRules" title="es/DOM/stylesheet.cssRules">cssRules</a> de hojas de estilo (<a href="/Es/DOM/Stylesheet" title="es/DOM/stylesheet">stylesheet</a>).</p>
<p>Existen varias clases de reglas y todas ellas comparten unas cuantas propiedades comunes en el interface {{ Anch("CSSRule") }} y la mayor parte de ellas son propiedades específicas de un tipo particular de reglas.</p>
<table class="fullwidth-table">
<tbody>
<tr>
<th>Tipo</th>
<th>interface específico de la regla</th>
<th>Descripción</th>
</tr>
<tr>
<td><code>CSSRule.STYLE_RULE</code></td>
<td>{{ Anch("CSSStyleRule") }}</td>
<td> </td>
</tr>
<tr>
<td><code>CSSRule.MEDIA_RULE</code></td>
<td>{{ Anch("CSSMediaRule") }}</td>
<td> </td>
</tr>
<tr>
<td><code>CSSRule.FONT_FACE_RULE</code></td>
<td>{{ Anch("CSSFontFaceRule") }}</td>
<td> </td>
</tr>
<tr>
<td><code>CSSRule.PAGE_RULE</code></td>
<td>{{ Anch("CSSPageRule") }}</td>
<td> </td>
</tr>
<tr>
<td><code>CSSRule.IMPORT_RULE</code></td>
<td>{{ Anch("CSSImportRule") }}</td>
<td> </td>
</tr>
<tr>
<td><code>CSSRule.CHARSET_RULE</code></td>
<td>{{ Anch("CSSCharsetRule") }}</td>
<td> </td>
</tr>
<tr>
<td><code>CSSRule.UNKNOWN_RULE</code></td>
<td>{{ Anch("CSSUnknownRule") }}</td>
<td> </td>
</tr>
</tbody>
</table>
<h3 id="CSSRule" name="CSSRule">CSSRule</h3>
<dl>
<dt><a href="/Es/DOM/CssRule.cssText" title="es/DOM/cssRule.cssText">cssText</a></dt>
<dd>Devuelve la representación en forma de texto, de la regla. Ejem.: "h1,h2 { font-size: 16pt }".</dd>
<dt><a href="/es/DOM/cssRule.parentRule" title="es/DOM/cssRule.parentRule">parentRule</a></dt>
<dd>Devuelve la regla contenedora, si existe. Ejem.: una regla de estilo dentro de un bloque @media.</dd>
<dt><a href="/Es/DOM/CssRule.parentStyleSheet" title="es/DOM/cssRule.parentStyleSheet">parentStyleSheet</a></dt>
<dd>Devuelve el objeto <a href="/Es/DOM/Stylesheet" title="es/DOM/stylesheet">stylesheet</a> del que esta regla es parte.</dd>
<dt><a href="/es/DOM/cssRule.type" title="es/DOM/cssRule.type">type</a></dt>
<dd>El tipo de regla. ejem.: <code>CSSRule.CHARSET_RULE</code> o <code>CSSRule.IMPORT_RULE</code>.</dd>
</dl>
<h3 id="CSSStyleRule" name="CSSStyleRule">CSSStyleRule</h3>
<dl>
<dt><a href="/Es/DOM/CssRule.selectorText" title="es/DOM/cssRule.selectorText">selectorText</a></dt>
<dd>Recoje/Establece la representación en forma de texto, del selector de la regle. Ejem.: "h1,h2".</dd>
<dt><a href="/Es/DOM/CssRule.style" title="es/DOM/cssRule.style">style</a></dt>
<dd>Devuelve el objeto <a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration">CSSStyleDeclaration</a> para el bloque <a class="external" href="http://www.w3.org/TR/1998/REC-CSS2-19980512/syndata.html#block">declaration block</a> de la regla.</dd>
</dl>
<h3 id="CSSStyleRule_2" name="CSSStyleRule_2">CSSStyleRule</h3>
<h3 id="CSSMediaRule" name="CSSMediaRule">CSSMediaRule</h3>
<h3 id="CSSFontFaceRule" name="CSSFontFaceRule">CSSFontFaceRule</h3>
<h3 id="CSSPageRule" name="CSSPageRule">CSSPageRule</h3>
<h3 id="CSSImportRule" name="CSSImportRule">CSSImportRule</h3>
<h3 id="CSSCharsetRule" name="CSSCharsetRule">CSSCharsetRule</h3>
<h3 id="CSSUnknownRule" name="CSSUnknownRule">CSSUnknownRule</h3>
<h3 id="Specification" name="Specification">Specification</h3>
<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule">DOM Level 2 CSS: CSSRule</a></p>
|