Internet Explorer 9 beta HTML5 视频标签不支持相对宽度/高度?

发布于 2024-10-16 22:56:48 字数 194 浏览 4 评论 0原文

IE9(测试版和预览版)不支持 html5 视频标签的相对宽度/高度,这是否正确?

Chrome、Safari 和Firefox 都很好地接受 width=50%,但 IE9 似乎将其读取为 50px。 (视频可以在所有 4 个浏览器中显示,因此没有问题)。

我想知道这是否是一个尚未实现的错误/功能或永久解决方案。

J。

Is it correct that IE9 (Beta & Preview) don't support relative width/height on the html5 video tag?

Chrome, Safari & Firefox all nicely accept a width=50%, but IE9 seems to read it as 50px. (Video is showing in all 4 browsers so no problem there).

I was wondering if it's a bug/feature yet to be implemented or permanent solution.

J.

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

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

发布评论

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

评论(3

小女人ら 2024-10-23 22:56:48

您是否尝试过使用 CSS 而不是 HTML 元素的属性来设置高度和宽度?

ie 而不是:

<video src='whatever' height='50%' width='50%'>

你可以尝试:

<video src='whatever' style='height:50%; width:50%;'>

...或者,当然,将样式放入单独的 CSS 文件中。

Have you tried setting the height and width using CSS rather than the HTML element's attributes?

ie rather than:

<video src='whatever' height='50%' width='50%'>

you could try:

<video src='whatever' style='height:50%; width:50%;'>

...or, of course, put the styles into your separate CSS file.

游魂 2024-10-23 22:56:48

我刚刚安装了 IE9 Release Candidate,由于没有任何变化,我想我们可以将其称为永久解决方案。

完整说明:

将在 IE9 中呈现为 100px 宽度。在最新版本的 Chrome、FireFox、Safari 和 Opera 中,这将以父 div 的 100% 宽度呈现。

I just installed the IE9 Release Candidate and since there's no change I guess we can call this their permanent solution.

Just to be complete: <video width="100%" height="100%"></video>

Will render as 100px width in IE9. In latest versions of Chrome, FireFox, Safari and Opera this will be rendered 100% width of the parent div.

杯别 2024-10-23 22:56:48

我使用 CSS 设置宽度:100% 和高度:100% 的标签样式。我尝试了 IE9 Beta,似乎有效。

I used CSS to style the tag for width:100% and height:100%. I tried IE9 Beta and that seemed to work.

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