Today we will talk about how to operate the formcontrol, form
Html form
Through the textarea case tutorial, let everyone form the textarea form control and use the textarea form control to input multi-text articles.
textarea text area summary
textarea syntax structure
<textarea name="DIV" cols="30" rows="4"> 网页制作教程www.php.cn </textarea>
Attribute description within the tag
Cols is the character width (the width of each line of input text), followed by specific numbers
Rows is the number of rows, the default input box area display height, followed by specific numbers
Case html code
<form action="" method="get"> <label>内容输入:</label> <textarea name="DIV" cols="30" rows="4"> www.php.cn-网页制作教程 </textarea> </form>
There are so many uses of form controls. Friends in need can save them. Please also continue to pay attention to other updates of this site. .
Related recommendations:
The above is the detailed content of How to use