不可见的 HTML 表单
我这里有一个奇怪的问题。在我运行 Joomla! 的网站之一上是登录表单 - http://bohemia-kichijoji.com/index。 php?option=com_user&view=login 。我注意到,登录表单在 Firefox 中不可见(在 4.0 上测试),但在其他浏览器中可见。我几乎尝试了所有方法 - 通过 CSS、HTML、运行验证 - 没有任何帮助。您能告诉我原因吗?为什么会发生这种情况?
非常感谢!
I have a weird problem here. On one of my websites running Joomla! is the login form - http://bohemia-kichijoji.com/index.php?option=com_user&view=login . What I have noticed, the login form is invisible in Firefox (tested on 4.0.)m but visible on other browsers. I have tried almost everything - went through CSS, HTML, run validation - nothing helped. Could you please tell me the reason, why this happens?
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来它被推到了页面之外,试试这个:
或者
似乎没有任何理由让表格浮动,所以我个人会使用选项 2。
Looks like it's getting pushed outside the page, try this:
OR
There didn't seem to be any reason to float the table, so personally I'd use option 2.
你有一个浮动问题。字段集元素(表)之前的元素向左浮动。你还没有清除你的浮动。有很多方法可以解决这个问题。您可以使用表单元素上的overflow属性,或者可以清除filedset元素本身的浮动,如下所示。
或者这样做
这将导致 fieldset 元素出现在 Firefox 4.0 和 Firefox 4.0.1 中
You have a floating problem. The Element before your fieldset element which is table is floated left. you have not cleared you floats. There are many ways around this. You could use the overflow property on the form element or you could clear the float on the filedset element itself as follows.
Or do like this
This will cause the fieldset element to appear in Firefox 4.0 and Firefox 4.0.1
这是因为使用导致它无法在 Firefox 中显示。
您需要删除 Firefox 的字段集并查看它是否有效。
It is because of using which is causing it to not display in Firefox.
You'll need to remove the fieldset for Firefox and see it it works..