但是在显示的HTML中的大小却不相同为什么呢?另,如果我是选择性的文本框如何指定它的大小而不是由键入的文字的多少来定呢?
这个要用css来做
<style type="text/css">
.text {
border-color: #999999;
border: 1px solid;
height:13px;
width: 20px;
}
</style>
A<input name="usernameTemp" type="text" class="text" /><br>
B<input name="passwordTemp" type="password" class="text" />
select 这不会做
[此贴子已经被作者于2006-2-28 20:45:26编辑过]