;在 tumblr 帖子中查看时是模糊的,否则看起来很清晰?
我正在使用豆瓣。我插入了一个图像,html 看起来像:
<img height="320" src="foo.png" width="400" />
我的图像确实是确切的尺寸,宽度(400),高度(320)。它包含文本,如果我直接访问图像的 URL(或在我的机器上本地访问),它看起来会很清晰。
然而,在 tumblr 帖子中,图像相当模糊。它的屏幕像素确实是 400 像素宽,但看起来可能通过我不知道的标签上的某些 css 属性应用了一些奇怪的压缩?
我可以检查一下到底发生了什么吗?
谢谢
I'm using tumblr. I've inserted an image, html looks like:
<img height="320" src="foo.png" width="400" />
My image really is that exact size, width(400), height(320). It has text in it, and looks crisp if I visit the url of the image directly (or locally on my machine).
In the tumblr post however, the image is quite blurry. It is indeed 400 pixels wide in screen pixels, but looks like there's some weird compression being applied possibly through some css attribute on the tag that I'm not aware of?
Anything I can check to see what's going on?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不太确定问题是什么,但您可以尝试将
img
放入div
中,并使用 style 而不是div
修复div
的大小代码>img。类似的东西I am not exactly sure whats the problem but you can try putting the
img
inside adiv
and fix the size ofdiv
using style instead ofimg
. something like尝试使用 css 给图像指定高度
,或者甚至不使用 img 标签,例如使用 div
try giving the image a height with css for example
or dont even use an img tag use a div for example