為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Why are the unordered bullet lists displaying as ordered, numbered lists?

more options

I'm a front-end web developer and whenever I have an unordered list <ul> on a website, the new version of Firefox is changing them from bullets (which is the standard for unordered lists) to numbers (which is the standard for ordered lists, or <ol>). Is there a way that this can be fixed? Those are Web standards and all of the sites we have are using <ul> so it will be very difficult for us to go back through and give each site a list-style-type.

I'm a front-end web developer and whenever I have an unordered list &lt;ul&gt; on a website, the new version of Firefox is changing them from bullets (which is the standard for unordered lists) to numbers (which is the standard for ordered lists, or &lt;ol&gt;). Is there a way that this can be fixed? Those are Web standards and all of the sites we have are using &lt;ul&gt; so it will be very difficult for us to go back through and give each site a list-style-type.

由 cor-el 於 修改

被選擇的解決方法

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required)?

You can right-click the list item and use Inspect Element to open the Inspector and check what rules are applied to the UL and LI elements.

從原來的回覆中察看解決方案 👍 1

所有回覆 (5)

more options

Apologies, I have the code listed in the question so that's why the spacing is so weird. All of the sites we're using are unordered lists.

more options

This can happen if you use an invalid property value for the list-style-type property.

See:

more options

I understand that it's an invalid property, the property is not defined at all. The web standard is that if you have an unordered list (ul) then it uses bullet points, and if you use an ordered list (ol) then it uses numbers. This is completely backwards on the new update, and since we develop over 400 websites, it will be a waste of our time to go back through every site and add a style type.

more options

選擇的解決方法

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required)?

You can right-click the list item and use Inspect Element to open the Inspector and check what rules are applied to the UL and LI elements.

more options

I think I found the issue. The programmer who had made the bulleted lists was not closing the li tag after the element. Thanks for your help!