mirror of https://github.com/rjbasitali/tutorials
Update 11. adding_and_styling_forms.md
parent
6df6d35415
commit
02f8ae5b33
|
|
@ -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; }` |
|
||||
| `<input type="text">` | `<input type="email">` | `<p lang="en-us en-gb">Hi!</p>` | `<p lang="en-us">Hi!</p>` |
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue