在HTML中id=kw是什么东西,它好像可以增加表单的高度,请指教,谢谢

来源:百度知道 编辑:UC知道 时间:2024/05/16 04:25:15

在HTML中
<form height="20" id="" name="form" action="">
<input type="hidden" name="hi"/>
</form>
其中height用来制定表单高度,你也可以定义CSS,如;
<style type="text/css">
<!--
.form {
height: 20px;
}
-->
</style>

<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="textfield" type="text" class="form" />
</label>
</form>
</body>

id是地址!