请问老师像我这个表单中第一行与第二行中的文本框怎样调整呢?
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>表单和表格的嵌入</title> </head> <body> <!-- 表单属性:[action:提交到的服务端地址;] [method:指定提交时用哪种HTTP方法:POST/GET;] [name:标识;] [autocomplete:浏览器是否可以自动填充;] [enctype:指定表单内容编码]--> <form action="" method="" name="" id="" autocomplete="" enctype="UTF-8"> <table border="3"> <tr> <td>姓名</td> <td cellspacing="0"><input type="text" value="请输入姓名" maxlength="10"/></td> </tr> <tr> <td>密码</td> <td><input type="password" value="请输入密码" maxlength="10"></td> </tr> <tr> <td>性别</td> <td><input name="genter" value="0" type="radio" checked>男<input name="genter" value="1" type="radio">女</td> </tr> <tr> <td>爱好</td> <td><input type="checkbox" value="0" checked>电影 <input type="checkbox" value="1">音乐 <input type="checkbox" value="2">唱歌 <input type="checkbox" value="3">游戏</td> </tr> <tr> <td colspan="2"> <button type="submit">提交</button> <button type="reset">重置</button> </td> </tr> </table> </form> </body> </html>
如上图中,与整体未对齐。
23
收起
正在回答
4回答
我按照你贴的代码,是对齐的呀~~
你运行的是你贴的这些代码么?
另外,建议将提示信息,例如“请输入姓名”写为:placeholder ="请输入姓名"
value是获取到的值,placeholder是提示信息。
祝学习愉快!
慕虎8754231
2018-04-26 15:55:03
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>表单和表格的嵌入</title> </head> <body> <!-- 表单属性:[action:提交到的服务端地址;] [method:指定提交时用哪种HTTP方法:POST/GET;] [name:标识;] [autocomplete:浏览器是否可以自动填充;] [enctype:指定表单内容编码]--> <form action="" method="" name="" id="" autocomplete="" enctype="UTF-8"> <table border="3"> <tr> <h1>注册信息</h1> <hr/ color="#336699"> <td >姓名</td> <td cellspacing="0"><input type="text" value="请输入姓名" maxlength="10" /></td> </tr> <tr></tr> <tr> <td>密码</td> <td><input type="password" value="请输入密码" maxlength="10"></td> </tr> <tr> <td>性别</td> <td><input name="genter" value="0" type="radio" checked>男<input name="genter" value="1" type="radio">女</td> </tr> <tr> <td>爱好</td> <td><input type="checkbox" value="0" checked>电影 <input type="checkbox" value="1">音乐 <input type="checkbox" value="2">唱歌 <input type="checkbox" value="3">游戏</td> </tr> <tr> <td colspan="2"> <button type="submit">提交</button> <button type="reset">重置</button> </td> </tr> </table> </form> </body> </html>
老师看,按照你说的左边又没靠齐。
从网页搭建入门Java Web2018版
- 参与学习 人
- 提交作业 1088 份
- 解答问题 10205 个
如果你有Java语言基础,又想以后从事Java Web开发,那么本路径是你的不二选择!本路径从网页搭建开始入手,通过大量案例来学习Java Web基础。定能助你完成Java Web小白的蜕变!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星