剩余股利政策的计算:急!求教网页制作高手 dreaweaver中表单高度宽度怎么设置

来源:百度文库 编辑:高考问答 时间:2024/04/28 06:45:17
不行啊

必须用CSS,尤其是文本框和密码框放在一起的时候,宽和高不一致。下面的代码能精确控制表单的宽、高、样式、颜色等。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>回复huoxiadi</title>
<style type="text/css">
<!--
.input {
FONT-SIZE: 9pt;
BORDER-BOTTOM: 0px
color: #996600;
background-color: #6690BD;
border: 1px solid #54697B;
color: #FFFFFF;
height: 20px;
width: 120px;
}
-->
</style>
</head>

<body>
<input name="textfield" type="text" class="input">
</body>
</html>
但愿能帮到你。

选中表单,页面左下角有高和宽的填写处。

<form height="100%"></form>
100%可以换为1024

可以间接的设置了
如:
<table height=你需要的高度 width=你需要的宽度 border="0" cellspacing="0" cellpadding="0"><form action="" method=post><tr><td>表单中的内容</td></tr></form></table>

插入一个一行一列的表格,把表单放在里面,你控制表格宽、高就可了,里面表单你爱怎么放就怎么放。