css selectors - CSS how to target 2 attributes? -
OK if I have a & lt; Input & gt;
tag
input [type = submit]
In addition, if I want to target & lt;
I can do this: value = "delete"
Tagged with
Input [value = delete]
but how can I target tags with both & lt; input & gt;
?
input [type = submit] [value = delete]
You are cheering the selectors Each step compresses your search results:
input
gets all input.
Input [Type = submit]
compresses it to be processed, while
input [type = submit] [value = delete]
It compresses what you want.
Comments
Post a Comment