Jim Miller
Jim Miller

Reputation: 3329

What's the meaning of faint text in the Firefox dev tools inspector?

What does it mean when there is "faint text" in the Firefox dev tools inspector, like the .tab-pane divs in the .project_tab_content area:

enter image description here

This corresponds to some Bootstrap stuff that is working everywhere except Firefox, so I'm a little suspicious... Thanks!

Upvotes: 0

Views: 505

Answers (1)

Sebastian Zartner
Sebastian Zartner

Reputation: 20095

Faded elements mean they are not visible. This can be due to some CSS like display: none or their dimensions being 0x0. See also the hint at MDN regarding this.

Upvotes: 2

Related Questions