aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/cssstyledeclaration/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-27 11:33:49 -0400
committerGitHub <noreply@github.com>2021-07-27 11:33:49 -0400
commit4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4 (patch)
tree0450d8e183c235b7ce07e9c34be2220e6ae1eab2 /files/es/web/api/cssstyledeclaration/index.html
parenta0187295debbfe75d4409f360ba7e0ff765ca2f3 (diff)
downloadtranslated-content-4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4.tar.gz
translated-content-4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4.tar.bz2
translated-content-4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4.zip
Remove link title attributes thats just the href es (#1737)
* remove link 'title' attributes that's just the 'href' (es) * a couple more
Diffstat (limited to 'files/es/web/api/cssstyledeclaration/index.html')
-rw-r--r--files/es/web/api/cssstyledeclaration/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/es/web/api/cssstyledeclaration/index.html b/files/es/web/api/cssstyledeclaration/index.html
index f63d7a2cfd..c4d35ea88a 100644
--- a/files/es/web/api/cssstyledeclaration/index.html
+++ b/files/es/web/api/cssstyledeclaration/index.html
@@ -43,9 +43,9 @@ translation_of: Web/API/CSSStyleDeclaration
<dt>{{domxref("CSSStyleDeclaration.setProperty()")}}</dt>
<dd>Sin retorno. Ejemplo: <em>styleObj</em>.setProperty('color', 'red', 'important')</dd>
<dt>{{domxref("CSSStyleDeclaration.getPropertyCSSValue()")}}</dt>
- <dd><span style="color: rgb(255, 0, 0);">Solo soportado a través de getComputedStyle.</span> Devuelve un {{ domxref("ROCSSPrimitiveValue") }} en Firefox ({{ domxref("CSSPrimitiveValue") }}, en otros, los cuales implementan <a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue" title="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue">CSSValue</a>), o nulo para <a href="/en/CSS/Shorthand_properties" title="en/Guide to Shorthand CSS">Propiedades taquigráficas</a>. Ejemplo: <em>cssString</em>= window.getComputedStyle(<em>elemento</em>, <code>null</code>).getPropertyCSSValue('color').cssText;<br>
+ <dd><span style="color: rgb(255, 0, 0);">Solo soportado a través de getComputedStyle.</span> Devuelve un {{ domxref("ROCSSPrimitiveValue") }} en Firefox ({{ domxref("CSSPrimitiveValue") }}, en otros, los cuales implementan <a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue">CSSValue</a>), o nulo para <a href="/en/CSS/Shorthand_properties" title="en/Guide to Shorthand CSS">Propiedades taquigráficas</a>. Ejemplo: <em>cssString</em>= window.getComputedStyle(<em>elemento</em>, <code>null</code>).getPropertyCSSValue('color').cssText;<br>
Observación: Gecko 1.9 devuelve <strong>null </strong>a menos que se utilice <a href="/en/DOM/window.getComputedStyle" title="en/DOM/window.getComputedStyle">getComputedStyle()</a>.<br>
- Observación: Este método puede estar <a class="external" href="http://lists.w3.org/Archives/Public/www-style/2003Oct/0347.html" title="http://lists.w3.org/Archives/Public/www-style/2003Oct/0347.html">desaconsejado por el W3C</a> , y no está presente en el último <a href="http://dev.w3.org/csswg/cssom/#cssstyledeclaration" title="http://dev.w3.org/csswg/cssom/#cssstyledeclaration">borrador CSSOM</a>. No está soportado por IE e incluso aunque la función existe en Opera, llamarla lanza una excepción {{ domxref("DOMException") }} NOT_SUPPORTED_ERR.</dd>
+ Observación: Este método puede estar <a class="external" href="http://lists.w3.org/Archives/Public/www-style/2003Oct/0347.html">desaconsejado por el W3C</a> , y no está presente en el último <a href="http://dev.w3.org/csswg/cssom/#cssstyledeclaration">borrador CSSOM</a>. No está soportado por IE e incluso aunque la función existe en Opera, llamarla lanza una excepción {{ domxref("DOMException") }} NOT_SUPPORTED_ERR.</dd>
</dl>
<h2 id="Example" name="Example">Ejemplo</h2>