img ,宽度设置100%,图片会变模糊。 设置为固定宽度就很清晰。比如一张图片宽度1920px:<img src="1920img.jpg" width="100%">代码这样写图片会压缩的比较模糊。<img src="1920img.jpg" width="1920px">这样固定宽度就不模糊了。。。请教各位什么原因,如何解决,谢谢
1 回答
HUH函数
TA贡献1836条经验 获得超4个赞
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) */}
- 1 回答
- 0 关注
- 8351 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消