Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

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

  • 5 respostas
  • 8 têm este problema
  • 1 visualização
  • Última resposta por 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.

Modificado por cor-el a

Solução escolhida

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.

Ler esta resposta no contexto 👍 1

Todas as respostas (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

Solução escolhida

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!