Re: [csswg-drafts] [selectors-4] Should :user-valid and :user-invalid apply to form and fieldset elements? (#9257)

I think this would be good to have, bacause we can use `<input>`'s, `<select>`'s and other form elements attribute `form` to associate other form, we use it heavily and using CSS `:has` selector is pointless in this case. 

```html
<form id="form1>
  <input>
  <input form="form2">
</form>
<form id="form2>
  <input>
  <input form="form1">
</form>
<input form="form1">
<input form="form2">
```

-- 
GitHub Notification of comment by morki
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9257#issuecomment-1748445120 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Thursday, 5 October 2023 09:09:23 UTC