Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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>

Được chỉnh sửa bởi cor-el vào

Tất cả các câu trả lời (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

Được chỉnh sửa bởi yesmarcos vào

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...