Nguyễn Trà Giang (
giangtranguyen) wrote in
twine_tutorials2017-07-05 03:56 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Entry tags:
How To Make Your Image No Longer Blurry When Hover
Just copy and paste the code into the Story Stylesheets, then adjust it to your liking.
For example:
img {
img:hover {
For example:
img {
-webkit-filter: blur(5px);
filter: blur(5px);
}img:hover {
-webkit-filter: blur(0px);
filter: blur(0px);
}