diff --git a/files/en-us/learn/forms/ui_pseudo-classes/index.md b/files/en-us/learn/forms/ui_pseudo-classes/index.md index 7dcdde973209c7a..5e32ff30ede9dc1 100644 --- a/files/en-us/learn/forms/ui_pseudo-classes/index.md +++ b/files/en-us/learn/forms/ui_pseudo-classes/index.md @@ -458,12 +458,8 @@ A fragment of the HTML is as follows — note the readonly attribute: If you try the live example, you'll see that the top set of form elements are not focusable, however, the values are submitted when the form is submitted. We've styled the form controls using the `:read-only` and `:read-write` pseudo-classes, like so: ```css -:is( - input:read-only, - input:-moz-read-only, - textarea:-moz-read-only, - textarea:read-only - ) { +input:read-only, +textarea:read-only { border: 0; box-shadow: none; background-color: white;