diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-02-25 08:31:36 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2021-02-25 08:31:36 -0500 |
commit | 97065b2e68dd8768dc1ea092c893c57ebe205026 (patch) | |
tree | 11bf4a1114c543989c24c7a801ba379b2c20a30c /files/es/web/api/canvasrenderingcontext2d/clearrect | |
parent | d1794f6b276285489b417053507f432a14be31df (diff) | |
download | translated-content-97065b2e68dd8768dc1ea092c893c57ebe205026.tar.gz translated-content-97065b2e68dd8768dc1ea092c893c57ebe205026.tar.bz2 translated-content-97065b2e68dd8768dc1ea092c893c57ebe205026.zip |
use class="hidden" not style="display:none"
Diffstat (limited to 'files/es/web/api/canvasrenderingcontext2d/clearrect')
-rw-r--r-- | files/es/web/api/canvasrenderingcontext2d/clearrect/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/es/web/api/canvasrenderingcontext2d/clearrect/index.html b/files/es/web/api/canvasrenderingcontext2d/clearrect/index.html index 64aa1a3908..12f9709bc5 100644 --- a/files/es/web/api/canvasrenderingcontext2d/clearrect/index.html +++ b/files/es/web/api/canvasrenderingcontext2d/clearrect/index.html @@ -41,7 +41,7 @@ translation_of: Web/API/CanvasRenderingContext2D/clearRect </dt> </dl> -<p><span style="display: none;"> </span> Este es un simple fragmento (snippet) de código que usa el método <strong><code>clearRect</code></strong>.</p> +<p><span class="hidden"> </span> Este es un simple fragmento (snippet) de código que usa el método <strong><code>clearRect</code></strong>.</p> <h4 id="HTML">HTML</h4> @@ -64,7 +64,7 @@ ctx.clearRect(10, 10, 100, 100); // clear the whole canvas // ctx.clearRect(0, 0, canvas.width, canvas.height);</pre> -<h2 id="sect1"><span style="display: none;"> </span> </h2> +<h2 id="sect1"><span class="hidden"> </span> </h2> <p>Edite el código de abajo y vea sus cambios actualizados en vivo en el canvas:</p> @@ -87,7 +87,7 @@ ctx.clearRect(10, 10, 100, 100); </tbody> </table> -<div style="display: none;"> +<div class="hidden"> <h6 id="Playable_code">Playable code</h6> <pre class="brush: html"><canvas id="canvas" width="400" height="200" class="playable-canvas"></canvas> |