0

Im scaling up text on hover by a small amount. The text looks blurry. After searching for a solution, I have tried various methods other people mention, but these do not work.

eg.

backface-visibility: hidden;

I've also tried scaling down the text before hover and using hover to scale to a value of 1. This also fails to work.

How can I scale text without it being blurry?

Im using transform scale and the bug is in webkit browsers

panthro
  • 22,779
  • 66
  • 183
  • 324

1 Answers1

0

You can scale font-size. Please check

span a{
    font-size: 24px;
}
span:hover a{
    color:#ba4a49 ;
    font-size: 240px;
    transition: all 2s linear;
}
<span><a href="#">Hello this looks blured during transition</a></span>

Please check This Link

Community
  • 1
  • 1
Vishu238
  • 673
  • 4
  • 17