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

2026-03-15 1 0

  写博客的时候偶尔发现,明明图片清晰度足够,但是通过CSS设置宽度和高度后图片就变模糊了,使用如下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) */
}
```

相关文章

中兴问天BE7200Pro+路由器外网访问设置
电信宽带更换中兴G7615光猫
荣耀magic5系列手机禁用系统更新
Typecho Joe主题 增加页码分页功能
Typecho添加微语(说说、碎语、时光机)功能
国产电视安装群晖DS DSPhoto TV版

发布评论