dw中在html中新建了表单,插入文本域问题???
我用dw8做了个网页,想做个用户登录,插入了表单,也插入了两个文本域,和提交按钮,把其中一个文本域类型设置成密码,结果预览时,密码的文本域,比单行的文本域宽了(设计时一样...
我用dw8做了个网页,想做个用户登录,插入了表单,也插入了两个文本域,和提交按钮,把其中一个文本域类型设置成密码,结果预览时,密码的文本域,比单行的文本域宽了(设计时一样大),非常不好看!请各位高手赐教!在下不胜感激!
表单的宽度可以改变大小吗?如果能怎样改变? 展开
表单的宽度可以改变大小吗?如果能怎样改变? 展开
8个回答
展开全部
<form action="denglu1.php" method="post" style="font-size:12px;color:#6E6E6E;">
用户名:<input type="text" name="userName" id="userName" value="<?php echo $_COOKIE['userName']; ?>" style="width:100px;height:20px;" /><br />
密 码:<input type="password" name="theMima" value="<?php echo $_COOKIE['theMima']; ?>" style="width:100px;height:20px;" /><br />
<input type="checkbox" name="keepInfo" value="jizhu" />记住用户名和密码<br />
<input type="submit" name="passInfo" value="登录" /> <input type="button" name="register" onclick="javascript:window.location.href='zhuce1.php'" value="注册" />
</form>
试试这段代码`
用户名:<input type="text" name="userName" id="userName" value="<?php echo $_COOKIE['userName']; ?>" style="width:100px;height:20px;" /><br />
密 码:<input type="password" name="theMima" value="<?php echo $_COOKIE['theMima']; ?>" style="width:100px;height:20px;" /><br />
<input type="checkbox" name="keepInfo" value="jizhu" />记住用户名和密码<br />
<input type="submit" name="passInfo" value="登录" /> <input type="button" name="register" onclick="javascript:window.location.href='zhuce1.php'" value="注册" />
</form>
试试这段代码`
展开全部
表单的宽度是可以通过定义样式中的(width,height属性)来控制的,
<form action="#" method="post" style="font-size:12px;color:#6E6E6E;">
用户名:<input type="text" name="userName" id="userName" style="width:100px;height:20px;" /><br />
密 码:<input type="password" style="width:100px;height:20px;" /><br />
<input type="submit" value="登录" /> <input type="button" value="注册" />
</form>
<form action="#" method="post" style="font-size:12px;color:#6E6E6E;">
用户名:<input type="text" name="userName" id="userName" style="width:100px;height:20px;" /><br />
密 码:<input type="password" style="width:100px;height:20px;" /><br />
<input type="submit" value="登录" /> <input type="button" value="注册" />
</form>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
遇到这样的问题,就用CSS样式去固定它
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-09-17
展开全部
可以用css统一控制宽度 <input type="password" name="userPass" size="20" style="width:150px">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是这样的,要想精确控制宽度,需要用CSS设置,比如:
用户名:<input
type="text"
name="username"
id="username"
style="width:120px;"
/><br
/>
密 码:<input
type="password"
name="password"
id="password"
style="width:120px;"
/>
用户名:<input
type="text"
name="username"
id="username"
style="width:120px;"
/><br
/>
密 码:<input
type="password"
name="password"
id="password"
style="width:120px;"
/>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询