云海平原
2016-05-11 11:17
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>表单标签</title>
</head>
<body>
<form method="post" action="save.php">
<tr> <label for="username">用户名:</label>
<input type="text" name="username" id="username" value="" /></tr>
<tr><label for="pass">密码:</label>
<input type="password" name="pass" id="pass" value="" />
<input type="submit" value="确定" name="submit" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>表单标签</title>
</head>
<body>
<form method="post" action="save.php">
<label for="username">用户名:</label>
<input type="text" name="username" id="username" value="" /><br/>
<label for="pass">密 码:</label>
<input type="password" name="pass" id="pass" value="" />
<input type="submit" value="确定" name="submit" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
这样比较好看吧 ,,哪有密码和账号输入在一行的。 <tr>并没有用吧。密码之间的空格是全角空格。
可以用<br />强制换行;
也可以用<table>,将密码及其空白框放一个<tr></tr>里面,但密码和空白框需放各自<td>里,不能漏。
不明白你的代码里面的<tr>是干啥用的,在这段代码里没看出什么意义的!
在密码用<br />换行
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>表单标签</title>
</head>
<body>
<form method="post" action="save.php">
<tr> <label for="username">用户名:</label>
<input type="text" name="username" id="username" value="" /></tr><br>
<tr><label for="pass">密码:</label>
<input type="password" name="pass" id="pass" value="" />
<input type="submit" value="确定" name="submit" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
加<br>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>表单标签</title>
</head>
<body>
<form method="post" action="save.php">
<label for="username">用户名:
<input type="text" name="username" id="username" value="" /></br></br>
<label for="pass">密  码:</label>
<input type="password" name="pass" id="pass" value="" />
<input type="submit" value="确定" name="submit" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
本来就是一行 你全屏看就知道了
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>表单标签</title>
</head>
<body>
<form method="post" action="save.php">
<tr> <label for="username">用户名:</label>
<input type="text" name="username" id="username" value="" /></tr>
<tr><label for="pass">密码:</label>
<input type="password" name="pass" id="pass" value="" /> <br>
<input type="submit" value="确定" name="submit" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
这个要用css设置宽度了。我想如果你是在练习,那你调整一下浏览器的宽度,是不是窗口宽度不够才换行了。
初识HTML(5)+CSS(3)-升级版
1225301 学习 · 18230 问题
相似问题