Firefox 2 在尝试跨浏览器内联块技巧时冻结

发布于 2024-07-18 14:39:16 字数 867 浏览 4 评论 0原文

我正在尝试设计一个使用 CSS 内联块显示值进行类似表格排列的表单。 我知道包括 Firefox 2 在内的某些浏览器不知道如何处理它,因此我使用此方法使其在所有浏览器中都可以工作。 然而,有时当我在 Firefox 2 中尝试时,浏览器会冻结。 我的 CPU 使用率卡在接近 100%,有时内存使用率迅速增加到一个巨大的值。 有谁知道为什么会发生这种情况或如何解决它? 以下是显示此问题的页面的简单示例:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>-moz-inline-stack test</title>
<style type="text/css">
div {
    display: -moz-inline-stack;
}
</style>
</head>
<body>
<div>
    <input type="radio" name="test" value="yes">
    <br>
    <input type="radio" name="test" value="no">
</div>
</body></html>

它在 Firefox 3 中工作正常,但在 Firefox 2 中冻结。 标签对于错误来说不是必需的,但它可以防止输入相互重叠。

I am trying to design a form that uses the CSS inline-block display value for a table-like arrangement. I know that some browsers including Firefox 2 don't know how to handle it, so I used this method to make it work in all browsers. However, sometimes when I try it in Firefox 2, the browser freezes. My CPU usage gets stuck near 100% and sometimes the memory usage rapidly increases to a huge value. Does anyone know why this is happening or how to work around it? Here is a simple example of a page that shows this problem:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>-moz-inline-stack test</title>
<style type="text/css">
div {
    display: -moz-inline-stack;
}
</style>
</head>
<body>
<div>
    <input type="radio" name="test" value="yes">
    <br>
    <input type="radio" name="test" value="no">
</div>
</body></html>

It works fine in Firefox 3 but it freezes Firefox 2. The <br> tag is not necessary for the bug but it keeps the inputs from being on top of each other.

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

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

发布评论

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

评论(1

相守太难 2024-07-25 14:39:16

试试这个

div {
  display: -moz-inline-box;
  display: inline-block;
  }

try this instead

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