Skip to content

Commit 2a31e3f

Browse files
authored
[css-forms-1] Include textarea in list of elements. (#11963)
This fixes three cases where <textarea> was omitted from the list of elements that appearance: base can be applied to.
1 parent 44891c4 commit 2a31e3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

css-forms-1/Overview.bs

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Markup Shorthands: css yes, markdown yes
8080
To apply the [=basic appearance=] on individual controls, the following code is used:
8181

8282
<pre class="lang-css">
83-
input, meter, progress, button, select {
83+
input, textarea, meter, progress, button, select {
8484
appearance: base;
8585
}
8686
</pre>
@@ -105,7 +105,7 @@ Markup Shorthands: css yes, markdown yes
105105
color: rgb(131, 17, 0);
106106
}
107107

108-
input, meter, progress, button, select {
108+
input, textarea, meter, progress, button, select {
109109
appearance: base;
110110
}
111111
</pre>
@@ -122,7 +122,7 @@ Markup Shorthands: css yes, markdown yes
122122
color: rgb(0, 249, 0);
123123
}
124124

125-
input, meter, progress, button, select {
125+
input, textarea, meter, progress, button, select {
126126
appearance: base;
127127
}
128128
</pre>

0 commit comments

Comments
 (0)