什么设置文本框的高度,行高或字体大小?
答案 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-size
,line-height
和任何明确声明的height
属性的组合。
对于<textarea>
,它是一个明确的高度声明,但我认为它表示为rows
而不是height
。