Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Error in the Inspect Element Tool !!

more options

I found a bug in the browser. When we use specific css classes, while trying to inspect the page with the inspect element tool, the list of css styles disappears. The styles to test is:

/* Placeholders layout */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #afafaf !important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #afafaf !important;
   opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #afafaf !important;
   opacity 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #afafaf !important;
}
I found a bug in the browser. When we use specific css classes, while trying to inspect the page with the inspect element tool, the list of css styles disappears. The styles to test is: <pre><nowiki> /* Placeholders layout */ ::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color: #afafaf !important; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #afafaf !important; opacity: 1; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #afafaf !important; opacity 1; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #afafaf !important; }</nowiki></pre>

Modifié le par cor-el

Toutes les réponses (3)

more options

Can you give a link to a live example of this?

There definitely are some bugs in the Inspector CSS Rules display. Usually if I reload the page I see the applicable rules again, but it would be helpful to chase down what causes these occasional problems.

I don't know what effect it might be having that your rules include numerous "unrecognized" properties (properties proprietary to other browsers). However, Firefox should be able to ignore those and display the ones it actually implements.

more options

This http://wedding.axitech.com.br/cadastro-fornecedores is an example of error. When I put the classes mentioned above, the error occurs but if I remove the classes mentioned, the error disappears.

CSS stylesheet http://wedding.axitech.com.br/assets/frontend/css/custom.css

Modifié le par yesmarcos

more options

Could you fix this issue displayed in the Web Console (CSS Warnings displayed) and test again:

custom.css Line 19 Character 11 Expected ':' but found '1'. Declaration dropped.

::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #afafaf !important;
   opacity 1;
}

If that's the issue, this is a bit too fragile...