You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using this attribute selector:
input[type="text"] {color: blue;}
I receive the warning:
"Disallow unqualified attribute selectors"
I don't believe this is accurate. I thought that if you did something like:
[id="myId"] {color: blue;}
That this would be bad since it would be the equivalent of the * global selector.
But in this case:
input[type="text"] {color: blue;}
the attribute selector is not "unqualified"