CSS设置宽高后图片变模糊的解决办法

2026-03-25 68 0

  写博客的时候偶尔发现,明明图片清晰度足够,但是通过CSS设置宽度和高度后图片就变模糊了,使用如下CSS设置可解决这个问题。

img {    
image-rendering: -moz-crisp-edges; /* Firefox */     
image-rendering: -o-crisp-edges; /* Opera */      
image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */
image-rendering: crisp-edges; 
-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}

相关文章

Typecho升级到1.3.0后主题搜索报错的解决方法
Typecho1.2.1 XSS漏洞
UptimeRobot网站监控调用方法
虚拟主机WordPress部署SSL注意事项(301跳转)
中兴问天BE7200Pro+路由器外网访问设置
电信宽带更换中兴G7615光猫

发布评论