aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/stylesheet/disabled/index.html
blob: 470283c9dc304958c3193cd7e458632ddf8663a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
title: Stylesheet.disabled
slug: Web/API/StyleSheet/disabled
translation_of: Web/API/StyleSheet/disabled
---
<p>{{ ApiRef() }}</p>
<h3 id="Summary" name="Summary">Resumen</h3>
<p>Esta propiedad indica si es se aplica o no, la hoja de estilo actual.</p>
<h3 id="Syntax" name="Syntax">Sintaxis</h3>
<pre class="eval"><em>bool</em> = stylesheet.disabled
</pre>
<h3 id="Example" name="Example">Ejemplo</h3>
<pre>// si la hoja de estilo está deshabilitada...
if (stylesheet.disabled) {
   // apply style in-line
}
</pre>
<h3 id="Specification" name="Specification">Especificación</h3>
<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-disabled">disabled </a></p>
<p>{{ languages( { "pl": "pl/DOM/stylesheet.disabled" } ) }}</p>