diff options
Diffstat (limited to 'files/pt-br/web/css/_colon_first-child/index.html')
-rw-r--r-- | files/pt-br/web/css/_colon_first-child/index.html | 139 |
1 files changed, 139 insertions, 0 deletions
diff --git a/files/pt-br/web/css/_colon_first-child/index.html b/files/pt-br/web/css/_colon_first-child/index.html new file mode 100644 index 0000000000..4301b602dc --- /dev/null +++ b/files/pt-br/web/css/_colon_first-child/index.html @@ -0,0 +1,139 @@ +--- +title: ':first-child' +slug: 'Web/CSS/:first-child' +tags: + - Referencia +translation_of: 'Web/CSS/:first-child' +--- +<p>{{ CSSRef() }}</p> + +<h2 id="Summary" name="Summary">Sumário</h2> + +<p>A <a href="/en/CSS/Pseudo-classes" title="Pseudo-classes">pseudo-classe</a> de <a href="/en/CSS" title="CSS">CSS</a> <strong><code>:first-child</code></strong> representa qualquer elemento que seja o primeiro filho de seus pais.</p> + +<h2 id="Syntax" name="Syntax">Sintaxe</h2> + +<pre class="eval">elemento:first-child { estilos } +</pre> + +<h2 id="Examples" name="Examples">Exemplos</h2> + +<h3 id="Exemplo_1">Exemplo 1</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><div> + <span>Este span é verde limão!</span> + <span>Este span não é verde limão. :(</span> +</div> +</pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css">span:first-child { + background-color: lime; +} +</pre> + +<p>... resultado ...</p> + +<p><span>{{EmbedLiveSample('Exemplo_1',300,50)}}</span></p> + +<h3 id="Example_2_-_Using_UL" name="Example_2_-_Using_UL">Exemplo 2 - Usando UL</h3> + +<h4 id="HTML_2">HTML</h4> + +<pre class="brush: html"><ul> + <li>Elemento de Lista 1</li> + <li>Elemento de Lista 2</li> + <li>Elemento de Lista 3</li> +</ul></pre> + +<h4 id="CSS_2">CSS</h4> + +<pre class="brush: css">li{ + color:red; +} +li:first-child{ + color:green; +}</pre> + +<p>... resultado ...</p> + +<p>{{EmbedLiveSample('Example_2_-_Using_UL',300,150)}}</p> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Status</th> + <th scope="col">Comentário</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('CSS4 Selectors', '#first-child-pseudo', ':first-child') }}</td> + <td>{{ Spec2('CSS4 Selectors') }}</td> + <td>Sem mudança.</td> + </tr> + <tr> + <td>{{ SpecName('CSS3 Selectors', '#first-child-pseudo', ':first-child') }}</td> + <td>{{ Spec2('CSS3 Selectors') }}</td> + <td>Definição inicial.</td> + </tr> + </tbody> +</table> + +<h2 id="Browsers_compatíveis">Browsers compatíveis</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Funcionalidade</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Suporte básico</td> + <td>4.0</td> + <td>{{ CompatGeckoDesktop("1.9") }}</td> + <td>7<sup><a href="#compat_hint1">[1]</a></sup></td> + <td>9.5</td> + <td>4</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td><span style="font-size: 12px; line-height: 18px;">Suporte básico</span></td> + <td>1.0</td> + <td>{{ CompatGeckoMobile("1.9.1") }}</td> + <td>7<sup><a href="#compat_hint1">[1]</a></sup></td> + <td>10.0</td> + <td>3.1</td> + </tr> + </tbody> +</table> +</div> + +<p><a id="compat_hint1" name="compat_hint1">[1]</a> Internet Explorer 7 não atualiza os estilo dos elementos quando estes são adicionados dinamicamente. No Internet Explorer 8, se um elemento é inserido dinamicamente por um evento de clique, o estilo first-child não é aplicado até que este perca o foco.</p> |