--- title: '::before (:before)' slug: 'Web/CSS/::before' translation_of: 'Web/CSS/::before' ---
::before
cria um pseudo-elemento que é o primeiro filho do elemento atingido. É frequentemente utilizado para adicionar conteúdo decorativo à um element utilizando a propriedade {{cssxref("content")}}. Este elemento é inline por padrão.
A notação ::before
(com dois dois-pontos) foi introduzida no CSS3 afim de diferenciar pseudo-classes de pseudo-elementos. Navegadores também aceitam a notação :before
introduzida no CSS 2.
Um exemplo simples do uso de pseudo-elementos ::before
pseudo-elementos é a exibição de aspas. Aqui usamos ::before e
{{Cssxref("::after")}}
para inserir caracteres de aspas.
<q>Algumas citações</q>, ele disse, <q>são melhor do que nenhuma.</q>
q::before { content: "«"; color: blue; } q::after { content: "»"; color: red; }
{{EmbedLiveSample('Adding_quotation_marks', '500', '50', '')}}
Podemos estilizar textos e imagens na propriedade {{cssxref("content")}} praticamente da forma que desejarmos.
<span class="ribbon">Observe onde a caixa laranja está.</span>
.ribbon { background-color: #5BC8F7; } .ribbon::before { content: "Olhe para esta caixa laranja."; background-color: #FFBA10; border-color: black; border-style: dotted; }
{{EmbedLiveSample('Decorative_example', 450, 60)}}
Neste exemplo vamos criar uma simples lista de tarefas, usando pseudo-elementos. Este método pode frequentemente ser utilizado para dar pequenos toques à UI (User Interface) e melhorar a experiência do usuário.
<ul> <li>Comprar Leite</li> <li>Levar o cachorro para passear</li> <li>Exercitar-se</li> <li>Escrever codigo</li> <li>Tocar musica</li> <li>Relaxar</li> </ul>
li { list-style-type: none; position: relative; margin: 2px; padding: 0.5em 0.5em 0.5em 2em; background: lightgrey; font-family: sans-serif; } li.done { background: #CCFF99; } li.done::before { content: ''; position: absolute; border-color: #009933; border-style: solid; border-width: 0 0.3em 0.25em 0; height: 1em; top: 1.3em; left: 0.6em; margin-top: -1em; transform: rotate(45deg); width: 0.5em; }
var list = document.querySelector('ul'); list.addEventListener('click', function(ev) { if( ev.target.tagName === 'LI') { ev.target.classList.toggle('done'); } }, false);
Aqui está rodando o código acima. Perceba que nenhum ícone é utilizado e o check-mark é o ::before
que foi estilizado no CSS.
{{EmbedLiveSample('To-do_list', 400, 300)}}
Embora as correções posicionadas e fixadas no Firefox 3.5 não permitam que o conteúdo seja gerado como um irmão anterior ao elemento (conforme a especificação para o CSS indicam "Os Pseudo-elementos :before e :after interagem com outros elementos como se fosse elementos reais inseridos dentro do elemento associado."), eles podem ser usados para proporcionar uma ligeira melhora em layouts sem tables (por exemplo, para alcançar a centralização), a medida que o conteúdo a ser centrado está envolvido com um elemento filho adicional, uma coluna antes e depois do conteúdo pode ser introduzida sem adicionar elementos filhos reais (isto é, talvez mais semanticamente correto para adicionar uma pequena distância, do que seria adicionar um div vazio antes e / ou depois). (E sempre lembre-se de adicionar uma largura a um flutuador, pois, de outra forma, não flutuará!)
<div class="example"> <span id="floatme">"Floated Before" should be generated on the left of the viewport and not allow overflow in this line to flow under it. Likewise should "Floated After" appear on the right of the viewport and not allow this line to flow under it.</span> </div>
#floatme { float: left; width: 50%; } /* To get an empty column, just indicate a hex code for a non-breaking space: \a0 as the content (use \0000a0 when following such a space with other characters) */ .example::before { content: "Floated Before"; float: left; width: 25% } .example::after { content: "Floated After"; float: right; width:25% } /* For styling */ .example::before, .example::after, .first { background: yellow; color: red; }
{{EmbedLiveSample("Notes")}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS4 Pseudo-Elements', '#selectordef-before', '::before')}} | {{Spec2('CSS4 Pseudo-Elements')}} | No significant changes to the previous specification. |
{{Specname("CSS3 Transitions", "#animatable-properties", "")}} | {{Spec2("CSS3 Transitions")}} | Allows transitions on properties defined on pseudo-elements. |
{{Specname("CSS3 Animations", "", "")}} | {{Spec2("CSS3 Animations")}} | Allows animations on properties defined on pseudo-elements. |
{{SpecName('CSS3 Selectors', '#gen-content', '::before')}} | {{Spec2('CSS3 Selectors')}} | Introduces the two-colon syntax. |
{{SpecName('CSS2.1', 'generate.html#before-after-content', '::before')}} | {{Spec2('CSS2.1')}} | Initial definition, using the one-colon syntax |
{{CompatibilityTable}}
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
:before support |
{{CompatVersionUnknown}} | {{CompatGeckoDesktop("1.0")}}[1] | 8.0 | {{CompatOpera("4")}} | 4.0 |
::before support |
{{CompatVersionUnknown}} | {{CompatGeckoDesktop("1.8")}}[1] | 9.0 | {{CompatOpera("7")}} | 4.0 |
Support of animations and transitions | 26 | {{CompatGeckoDesktop("2.0")}} | {{CompatNo}} | {{CompatNo}} | {{CompatNo}} |
Feature | Android | Chrome | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
:before support |
{{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} |
::before support |
{{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | 7.1 | {{CompatUnknown}} | 5.1 |
Support of animations and transitions | 26 | {{CompatVersionUnknown}} | {{CompatGeckoMobile("4.0")}} | {{CompatNo}} | {{CompatNo}} | {{CompatNo}} |
[1] Firefox prior to version 3.5 only implemented the CSS 2.0 version of :before. Not allowed were {{cssxref("position")}}, {{cssxref("float")}}, list-style-*
and some display properties. Firefox 3.5 removed those restrictions.