简体   繁体   English

CSS适用于Chrome,但不适用于IE或Firefox

[英]CSS working in Chrome, but not IE or Firefox

I'm developing a website for a client and attempting to add multiple menus to a single page. 我正在为客户开发一个网站,并尝试将多个菜单添加到单个页面。 They are labeled completely differently, and as of now, one of the menus is just a list. 它们的标签完全不同,到目前为止,菜单之一只是一个列表。 It has no css formatting, and isn't linked to a stylesheet at all. 它没有CSS格式,也根本没有链接到样式表。 The first menu may be a cause of the problem. 第一菜单可能是问题的原因。 Anyway, I have a list like so: 无论如何,我有一个像这样的列表:

<ul>
    <li><a href="#"><span>All</span></a></li>
    <li><a href="#"><span>Test Category</span></a></li>
    <li><a href="#"><span>Another test</span></a></li>
    <li><a href="#"><span>More tests</span></a></li>
    <li><a href="#"><span>Categories</span></a></li>
</ul>

This works just fine in Google Chrome, however whenever I open it in Firefox or Internet Explorer, it formats it like so: http://gyazo.com/74157a833e0bff1e62a2a6cba5db5f5f 这在Google Chrome浏览器中可以正常工作,但是,每当我在Firefox或Internet Explorer中打开它时,它的格式如下: http : //gyazo.com/74157a833e0bff1e62a2a6cba5db5f5f

As I'm not quite sure what the source of the problem is, it's too large to post, and CSS and HTML are client side, I'll refrain from posting all of the code here, but feel free to look at my code at http://www.capbig.tk 由于我不确定问题的根源是什么,它太大了以致无法发布,而CSS和HTML都是客户端,因此,我将避免在此处发布所有代码,但请随时查看我的代码http://www.capbig.tk

Note: The server which the website is currently hosted on can become unresponsive occasionally. 注意:当前托管网站的服务器有时可能无法响应。 It will simply return a blank page. 它只会返回一个空白页。 Please be patient, I know you're trying to help me, so I apologize for any inconvenience. 请耐心等待,我知道您正在尝试帮助我,对于给您带来的任何不便,我深表歉意。

Any help is greatly appreciated. 任何帮助是极大的赞赏。 Thank you! 谢谢!

Put this in your style sheet. 将其放在样式表中。

#categories{
  clear:both;

}

Now keep in mind that the list will be pushed down some, but that is because you are positioning your top list up by -100px. 现在请记住,该列表将被下推一些,但这是因为您将顶部列表上移了-100px。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM