Question: What is the correct selector for targeting all text inputs that are not disabled?

  1. `input[type="text"]:not([disabled]) {...}`
  2. `input[type="text"]:not("disabled") {...}`
  3. `input[type*="text"]:not([disabled="disabled"]) {...}`
  4. `input[type="text"]:not([type="disabled"]) {...}`

Answer: The correct answer of the above question is Option A:`input[type="text"]:not([disabled]) {...}`