6个回答
2015-11-05 · 知道合伙人数码行家
关注
展开全部
是的,一个是以明文显示,一个是以符号(点号或星号)显示。
不过可以统一固定下宽高,写个样式调用即可。
.w150 {width:150px;height:30px;line-height:30px;}
两者代码设置如下:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>input属性显示</title>
<style>
.w150 {width:150px;height:30px;line-height:30px;}
</style>
</head>
<body>
text属性为明文:<input type="text" value="12345678" class="w150" /><br /><br />
password属性为密文:<input type="password" value="12345678" class="w150" />
</body>
</html>
2013-06-04
展开全部
<input type="text" id="txt1" style="width:100px;">
<input type="password" style="width:100px;"> 这样子就行了,用style来设置!!
<input type="password" style="width:100px;"> 这样子就行了,用style来设置!!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1:
<p>设备码 <input type="text" name="mac" style="width:150px"/></p>
<p>密备码 <input type="password" name="pwd" style="width:150px"/></p>
2:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.inputcss
{
width:150px;height:20px;
}
</style>
</head>
<body>
<p>设备码 <input type="text" name="mac" class="inputcss"/></p>
<p>密备码 <input type="password" name="pwd" class="inputcss"/></p>
</body>
</html>
<p>设备码 <input type="text" name="mac" style="width:150px"/></p>
<p>密备码 <input type="password" name="pwd" style="width:150px"/></p>
2:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.inputcss
{
width:150px;height:20px;
}
</style>
</head>
<body>
<p>设备码 <input type="text" name="mac" class="inputcss"/></p>
<p>密备码 <input type="password" name="pwd" class="inputcss"/></p>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-04
展开全部
用size改变长度
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-04
展开全部
一楼说的对 用size 如:<input type="text" size="30">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询