复制代码 代码如下:
<!DOCTYPE html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<html>
<body>
用户名:<input type="text" name="username"><br/>
密码:<input type="password" name="password">
</body>
</html>
这个输入框没有对齐啊,我心里那个难过啊,这时候边上的同事说可以用表格来格式化一下,请教后代码如下:
复制代码 代码如下:
<!DOCTYPE html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<html>
<body>
<table>
<tr>
<td>用户名:</td>
<td><input type="text" name="username"><br/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password"></td>
</tr>
</table>
</body>
</html>
啊哈,新技能get,感谢童竣同学大力支持~~
还教了我如何使用css来控制表格的格式
复制代码 代码如下:
<style type="text/css">
table{border-top:#000 solid 1px; border-left:#000 solid 1px;}
td{ border-bottom:#000 solid 1px; border-right:#000 solid 1px;}
</style>
本文地址:http://www.45fan.com/dnjc/9990.html