IE9 中 CSS 高度为 100% 的画布

发布于 2024-10-28 20:10:26 字数 167 浏览 3 评论 0原文

我有一个 CSS 中宽度为 100% 且高度为 100% 的画布,并且没有在属性上设置任何内容。我知道通过属性设置的画布视口大小和通过CSS定期设置的元素大小之间的区别。 IE9 对 width:100% css 响应良好,但完全忽略了高度。这是一个错误吗?怎么了? 它在 FF 和 Chrome 中运行良好......

I have a canvas with width:100% and height:100% in CSS and nothing set on the attributes. I know about the difference between the viewport size of the canvas set by attributes and the element size set regularly with css. IE9 responds well to the width:100% css but completely ignores the height. Is this a bug? What is wrong?
It works well in FF and Chrome...

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

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

发布评论

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

评论(1

银河中√捞星星 2024-11-04 20:10:26
body {
    width: 100%; height: 100%;
    margin: 0; padding: 0;
}

canvas {
   width: 100%; height: 100%;
}

那应该可以解决问题。

body {
    width: 100%; height: 100%;
    margin: 0; padding: 0;
}

canvas {
   width: 100%; height: 100%;
}

That should do the trick.

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