aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/css/comentário
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:58 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:58 +0100
commit68fc8e96a9629e73469ed457abd955e548ec670c (patch)
tree8529ab9fe63d011f23c7f22ab5a4a1c5563fcaa4 /files/pt-br/web/css/comentário
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.gz
translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.bz2
translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.zip
unslug pt-br: move
Diffstat (limited to 'files/pt-br/web/css/comentário')
-rw-r--r--files/pt-br/web/css/comentário/index.html49
1 files changed, 0 insertions, 49 deletions
diff --git a/files/pt-br/web/css/comentário/index.html b/files/pt-br/web/css/comentário/index.html
deleted file mode 100644
index dabb46a04f..0000000000
--- a/files/pt-br/web/css/comentário/index.html
+++ /dev/null
@@ -1,49 +0,0 @@
----
-title: Comentário
-slug: Web/CSS/Comentário
-tags:
- - CSS
- - CSS Reference
- - Iniciante
-translation_of: Web/CSS/Comments
----
-<div>ios{{CSSRef}}</div>
-
-<h2 id="Sumário">Sumário</h2>
-
-<p>Comments are used to add explanatory notes or prevent the browser from interpreting parts of the style sheet.</p>
-
-<p>Comments can be placed where ever white space is allowed within a style sheet.</p>
-
-<h2 id="Sintaxe">Sintaxe</h2>
-
-<pre class="syntaxbox">/* Comment */</pre>
-
-<h2 id="Exemplos">Exemplos</h2>
-
-<pre class="brush:css">/* A single line comment */
-
-/*
-A comment
-which stretches
-over several
-lines
-*/
-</pre>
-
-<h2 id="Notas">Notas</h2>
-
-<p>The <code>/* */</code> comment syntax is used for both single and multi line comments. There is no other way to specify comments in external style sheets. However, when using the <code>&lt;style&gt;</code> element, you may use <code>&lt;!-- --&gt;</code> to hide CSS from older browsers, although this is not recommended. As in most programming languages that use the <code>/* */</code> comment syntax, comments cannot be nested. In other words, the first instance of <code>*/</code> that follows an instance of <code>/*</code> closes the comment.</p>
-
-<h2 id="Especificações">Especificações</h2>
-
-<ul>
- <li><a href="http://www.w3.org/TR/CSS21/syndata.html#comments">CSS 2.1 Syntax and basic data types #comments</a></li>
-</ul>
-
-<h2 id="Veja_também">Veja também</h2>
-
-<ul>
- <li><a href="/en-US/docs/Web/CSS/Reference">CSS Reference</a></li>
- <li>{{CSS_key_concepts}}</li>
-</ul>