You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or [monospaced](https://en.wikipedia.org/wiki/Monospaced_font), font. Whitespace inside this element is displayed as written.
Represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example, a comment on a review or feedback form.
5450
5450
@@ -5472,9 +5472,6 @@ def __init__(
5472
5472
maxlength: AttributeType=None,
5473
5473
wrap: Union[Literal['hard', 'soft'], None] =None,
5474
5474
readonly: Optional[bool] =None,
5475
-
id: Optional[str] =None,
5476
-
_class: Optional[str] =None,
5477
-
style: Optional[str] =None,
5478
5475
**attributes: AttributeType,
5479
5476
) ->None:
5480
5477
"""
@@ -5493,9 +5490,6 @@ def __init__(
5493
5490
[View full documentation](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea)
0 commit comments