Chrome developer tools Style tab showing faded CSS definition, why?
Rules that are faded are not applied to the element. Take a look at this example <!– HTML –> <div> <span>Test</span> </div> /* CSS */ div { color: #F0F; margin: 15px; stroke: #FFF; float: left; } If you open dev tools, you will notice that margin and float are faded, color and stroke are not. … Read more