国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Text field, supports multi-line text input

When users need to enter a large section of text in a form, a text input field needs to be used.

Grammar:

<textarea  rows="行數(shù)" cols="列數(shù)">文本</textarea>

1, <textarea> tags appear in pairs, starting with <textarea>, End with </textarea>.

2, cols: The number of columns of the multi-line input field.

3, rows: The number of rows in the multi-line input field.

##4

, default value can be entered between the <textarea></textarea> tags.

Example:

<form  method="post" action="save.php">
   <label>聯(lián)系我們</label>
   <textarea cols="50" rows="10" >在這里輸入內(nèi)容...</textarea>
</form>
Display the results in the browser:

Note that these two properties can be replaced by width and height in CSS style: col is replaced by width and row is replaced by height.

Continuing Learning
||
?<form method="post" action="save.php"> <label>聯(lián)系我們</label> <textarea cols="50" rows="10" >在這里輸入內(nèi)容...</textarea> </form>
submitReset Code