I'm doing an animation with CSS but the effect is correct only in the first word of the text and the rest is not. Would anyone know the reason for this?
h3{
position: absolute;
font-family: consolas;
letter-spacing: 5px;
color: transparent;
}
h3:before{
content: attr(data-text);
position: absolute;
overflow: hidden;
border-right: solid 1px #000;
width: 100%;
height: 100%;
animation: type 10s steps(27) infinite;
color: #000;
}
@keyframes type{
0%{
width: 0;
}
50%{
width: 100%;
}
100%{
width: 0;
}
}
<h3 data-text="Efeito CSS - Escrever Texto">
Efeito CSS - Escrever Texto
</h3>