Re: [csswg-drafts] [selectors] :read-only and :read-write (#127)

I agree with @MatthewRaymond 
I think it is very unintuitive, that such css
```css
/* both matches <select> */
select:read-only {}
select:not([readonly]) {}

/* both matches <div> */
div:read-only {}
div:not([readonly]) {}
```
will be applied to such html
```html
<div></div>
<select></select>
```

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

Received on Wednesday, 27 May 2020 13:46:17 UTC