图像周围奇怪的填充问题

发布于 2024-10-11 03:04:33 字数 155 浏览 2 评论 0原文

我有一个奇怪的问题。我想在图像周围添加边框,但它在底部显示了一些空间。请看这里:http://jsfiddle.net/4WKJY/ 我不想设置固定的高度和宽度。感谢您的任何帮助。

I'm having a strange problem. I want to put border around the image, but it is showing some space at the bottom. Please have a look here: http://jsfiddle.net/4WKJY/
I don't want to put fixed height and width. Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ˇ宁静的妩媚 2024-10-18 03:04:33

与其他答案相反,它与标记中的空格无关,删除空格并不能解决这个问题。

问题是图像默认是内联的,并且垂直对齐的初始值为baseline。这意味着图像被视为页面的任何其他文本组件,并且在文本内容下方为下行保留空间 - 小写“j”等字母的尾部。

要解决此问题,您需要告诉渲染引擎认为图像不应被视为文本内容 - .thumb img { display: block; } 会执行此操作 - 或者您可以告诉渲染引擎不要为下降部分保留空间,而是将内容对齐到最底部 - .thumb img {vertical-align: Bottom; } 将执行此操作。

编辑:我似乎记得旧版本的 Internet Explorer 错误地处理空格,因此删除空格可能会产生影响,但我上面所说的仍然有效;删除空格并不能解决此问题的跨浏览器问题。

Contrary to the other answer, it has nothing to do with whitespace in the markup, and removing the whitespace won't fix this.

The problem is that images are inline by default and the initial value for vertical alignment is baseline. This means that the image is treated as if it were any other textual component of the page, and space is reserved beneath textual content for descenders - the tails on letters like lowercase 'j' etc.

To fix this, you either need to tell the rendering engine that the image shouldn't be treated like textual content - .thumb img { display: block; } will do this - or you can tell the rendering engine not to reserve space for descenders, and instead align the content to the very bottom - .thumb img { vertical-align: bottom; } will do this.

Edit: I seem to recall that old versions of Internet Explorer incorrectly handle whitespace, so removing the whitespace may have an effect there, but what I said above still stands; removing the whitespace is not a cross-browser fix for this problem.

春风十里 2024-10-18 03:04:33

您可以通过在 CSS 中添加 img display:block 来修复此问题,如下所示< /a>.

You can fix it by making the img display:block in your CSS, as seen here.

看春风乍起 2024-10-18 03:04:33

或者,仅将 CSS 应用于图像:

.thumb img{
position: relative;
padding:2px;
float: left;
margin: 0px 0px 5px 5px;
border: solid 1px #ccc; 
}

Alternatively, apply the css only to images:

.thumb img{
position: relative;
padding:2px;
float: left;
margin: 0px 0px 5px 5px;
border: solid 1px #ccc; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文