On hovering Text gets blured(on Chrome).
I know this is because of SCALING of text..
So my question is is there any way to do the same task in which text doesn't get blured.
Here is what I have tried
span a {
font-size: 24px;
}
span:hover a {
color: #ba4a49;
-webkit-transform: scale(10);
transition: all 2s linear;
}
<span>
<a href="#">Hello this looks blured during transition</a>
</span>
update
Plese Note that I have to scale the text from center. If I change the font Size 10 Times then scaling is done from left(not center)
span:hover a {
color: #ba4a49;
font-size:250px;
transition: all 2s linear;
}