泉州到深圳飞机票:怎样调整textarea的行距?

来源:百度文库 编辑:高考问答 时间:2024/05/06 02:30:42
<textarea name="textarea"></textarea>
怎样可以任意调整它的行间距??
请详细一些,谢谢。

用CSS的line-height来调整就可以了:

<html>
<head>
<style type="text/css">

.SpanHeight{line-height:2.0}

</style>
</head>
<body>
<textarea name=mylife class=SpanHeight cols="80" rows="20">

line-height的值为行距,1.0代表单倍行距,以次类推.

你试试CSS