带有 VIDEO 子项的无样式 DIV 的高度高于应有的高度

发布于 2024-11-27 03:06:18 字数 410 浏览 0 评论 0原文

由于某种原因,当基本的无样式 DIV 元素包含 VIDEO 元素(可能还有其他元素 - 我还没有测试多种类型)时,它会在底部附加额外的高度。

<div><video src="my_movie.ogv"></video></div>

我在一个准系统的基本 HTML 文件中有上面的代码行。使用 Firefox 或 Safari/Chrome(如果我使用 .mp4 文件而不是)DOM 检查器,我发现 DIV 元素的计算高度比 VIDEO 元素的高度高 2-5 个像素。

这看起来不像是预期的和有意的行为。例如,如果我在其中放置 P 元素而不是 VIDEO 元素,则 DIV 不会有任何额外的高度。

有谁知道为什么浏览器以这种方式呈现 DOM 元素的这种配置?

For some reason a basic unstyled DIV element has extra height tacked onto the bottom when it contains a VIDEO element (and possibly other elements - I haven't tested with many types).

<div><video src="my_movie.ogv"></video></div>

I have the above line of code in a barebones base HTML file. With Firefox or Safari/Chrome's (if I use an .mp4 file instead of course) DOM inspectors on I see that the computed height of the DIV element is anywhere from 2-5 pixels more than the height of the VIDEO element.

This doesn't seem like expected and intentional behavior. If I put a P element in there instead of a VIDEO element, for example, the DIV doesn't have any of the extra height.

Does anyone know why the browsers are rendering this configuration of DOM elements in this way?

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

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

发布评论

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

评论(1

有深☉意 2024-12-04 03:06:18

如果您的标记如上所示,并且没有应用特殊样式,那么您看到的行为是 CSS 盒模型所需要的;空间是字体下降的大小,因为视频的底部默认放置在基线上,而不是文本的底部。特别是,请参阅 https://bugzilla.mozilla.org/show_bug.cgi?id =22274#c55 获取规范术语的解释和 https://bugzilla.mozilla.org/show_bug.cgi?id=22274#c37 了解如何删除空格(如果您愿意)。您还可以将块上的 line-height 设置为 0 以消除空格;您采取哪种方法应该取决于您的其他设计约束。

If your markup is as above and there are no special styles applied to it, then the behavior you see is required by the CSS box model; the space is the size of the font's descent, because the bottom of the video is placed by default on the baseline, not at the bottom of the text. In particular, see https://bugzilla.mozilla.org/show_bug.cgi?id=22274#c55 for an explanation in spec terms and https://bugzilla.mozilla.org/show_bug.cgi?id=22274#c37 for how to get rid of the space if you want to. You could also set line-height on the block to 0 to get rid of the space; which approach you take should depend on your other design constraints.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文