4
Is there any way to break the line of a text that is in content
of a pseudo element type o ::after
or the ::before
?
Whereas something like this: content: "<br> não quebra?";
or this content: "não <br> quebra?";
will not work, what options would we have for this line of content ::after
"fall" to the bottom line?
.z::after {
content: "::after não quebra?";
color: red;
}
.z.x::after {
content: "::after <br> não quebra?";
}
<span class="z">como quebrar a linha aqui | </span><br>
<span class="z x">como quebrar a linha aqui | </span><br>
Thanks Uncle, you’re quick on the trigger huh! D
– hugocsl