-1
The Value of content
is an requested source? And if so, the correct use must be in :before
or after
of the element according to W3C. Example:
#app {
position: relative;
background-color: #ddd;
color: #666
}
#app:after {
position: relative;
content: 'div';
margin-left: 5px;
color: red;
}
<div id="app">Qual a sua TAG?</div>
it was exactly for not being in the after, I had already solved before back aq in the stack, but thanks anyway :D
– Murilo Melo