From 02f8ae5b33e79cae324f790f79820bf932b2f0a8 Mon Sep 17 00:00:00 2001 From: Basit Ali Date: Sat, 11 Jun 2022 16:45:55 +0500 Subject: [PATCH] Update 11. adding_and_styling_forms.md --- css - the complete guide/11. adding_and_styling_forms.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css - the complete guide/11. adding_and_styling_forms.md b/css - the complete guide/11. adding_and_styling_forms.md index d566942..8ac23cf 100644 --- a/css - the complete guide/11. adding_and_styling_forms.md +++ b/css - the complete guide/11. adding_and_styling_forms.md @@ -65,7 +65,7 @@ We can also select attributes with a prefix value, e.g. `[lang|="en"]` means ele | Element with Attributes | Element with Specific Attribute Value | Element with Specific Attribute Value in List | Element with Specific Attribute Value/Value- | | --- | --- | --- | --- | -| `[type] { color: red; }` | `[type="email"] { color: red; }` | `[lang~="en-us"] { color: red; }` | `[lang|="en"] { color: red; }` | +| `[type] { color: red; }` | `[type="email"] { color: red; }` | `[lang~="en-us"] { color: red; }` | `[lang\|="en"] { color: red; }` | | `` | `` | `

Hi!

` | `

Hi!

` | @@ -197,4 +197,4 @@ To style a button element with `disabled` attribute, to give the user a clear fe background: #ccc; color: #a1a1a1; } -``` \ No newline at end of file +```