代码
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>textarea</title>
</head><body>
<h2>多行文本框:</h2>
<!--textarea(文本域)cols(列) rows(行)-->
<textarea name="content" cols="20" rows="10">默认文本</textarea>
</body>
</html>
如果要为< textarea >标签设置提示信息,可以使用placeholder属性。
运行效果
< textarea >标签用于定义多行文本输入框,可以通过cols和rows属性来规定文本区域内可见的列数和行数,具体的尺寸可以通过width和height来设置。