行高和字体大小

时间:2009-09-11 11:59:19

标签: css

什么设置文本框的高度,行高或字体大小?

4 个答案:

答案 0 :(得分:4)

height

属性

<input type="text" class="hei" id="txt1" />
<style>
.hei
{
   height: 40px;
}
</style>

font-size :设置或检索一个值,该值指示对象中文本使用的字体大小。

line-height :设置或检索对象中行之间的距离

答案 1 :(得分:0)

input {
    height: 100px;
}

答案 2 :(得分:0)

css选项高度?

答案 3 :(得分:0)

如果是<input type="text" />,则它是font-sizeline-height和任何明确声明的height属性的组合。

对于<textarea>,它是一个明确的高度声明,但我认为它表示为rows而不是height