My Angular app's home page features dynamic word changes defined in CSS:
.header-text:after {
display: inline-block;
content:'';
animation: fide-in 5s linear infinite;
}
@keyframes fide-in {
0% { content:'BLA'; opacity: 1; }
50% { content:'BřA'; opacity: 1; }
}
I'm encountering an issue with the word 'BřA', where Chrome interprets it as 'Bř A'. How can I eliminate this unwanted whitespace between 'ř' and 'A'?