OK if I want to target an <input> tag with type="submit" I can do so like:
input[type=submit]
Also if I want to target an <input> tag with value="Delete" I can do so like:
input[value=Delete]
But How can I target an <input> tag with BOTH?
You’re chaining selectors. Each step narrows your search results:
finds all inputs.
narrows it to submits, while
narrows it to what you need.