<tr>
标签内。
<table> <tr> <th></th> <td></td> <td></td> </tr> </table>
border-collapse: collapse; /* 边框合并 */ border-collapse: separate; /* 边框分离 */
border-collapse: separate; /* 边框分离 */ border-spacing: 5px 10px /* 横向 纵向*/
caption-side: top; /* 把标题放在表格上面。*/ caption-side: bottom; /* 把标题放在表格下面。*/
<tr> <th scope="col">星期一</th> <!-- 把<th>标识为列的表头--> <th scope="col">星期二</th> <!-- 把<th>标识为列的表头--> </tr> <tr> <th scope="row">第一节</th> <!-- 把<th>标识为行的表头--> <td>语文</td> </tr>
<form>
:定义供用户输入的表单标签。<input>
:输入标签。type
:定义输入类型,如文本域text
、密码字段password
、提交按钮submit
。name
:定义表单的名称,用于在表单提交之后引用表单数据,或者在 JavaScript 中引用元素。placeholder
:定义输入框中的提示信息。
<form> <input type="text"> </form>
<html> <head> <title>文本域</title> </head> <body> <form> 姓名:<input type="text" name="Name"><br> 学号:<input type="text" name="Student ID"> </form> </body> </html>
<html> <head> <title>密码字段</title> </head> <body> <form> 账号:<input type="text" name="Accound"><br> 密码:<input type="password" name="Password"> <!-- 默认隐藏输入的内容 --> </form> </body> </html>
<html> <head> <title>表单</title> </head> <body> <form> <input type="radio" name="Sex" value="man">男<br> <!-- 选择此项后提交的值即为value的值 --> <input type="radio" name="Sex" value="woman">女 </form> </body> </html>
<html> <head> <title>表单</title> </head> <body> <form> <input type="checkbox" name="Career" value="programmer">我是程序员<br> <input type="checkbox" name="Career" value="Superheroes">我是超级英雄 </form> </body> </html>
<html> <head> <title>表单</title> </head> <body> <form> <input type="text" name="Name" placeholder="姓名"><br> <!-- 与例一的区别就是通过 placeholder 设置了提示信息 --> <input type="text" name="Student ID" placeholder="学号"><br> <input type="submit" value="提交"> </form> </body> </html>