Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

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

  • 5 відповідей
  • 8 мають цю проблему
  • 1 перегляд
  • Остання відповідь від aubreybirowski

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!