php中tr標籤是什麼意思
tr定義行
th表示頭部
td表示單元格
tr不能單獨存在,相當於table的屬性標籤,而th,td也應當放在tr中。<th>不光是粗體,還是居中的。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <!-- 下面是一張表 --> <th>學生表</th> <table> <tr> <th>姓名 </th> <th>學校</th> <th>住址</th> </tr> <tr> <!-- 表示行 --> <td>張三</td> <!-- 行中子元素 --> <td>高新中學</td> <td>西安市</td> </tr> <tr> <td>王五</td> <td>長安中學</td> <td>咸陽市</td> </tr> </table> </body> </html>
推薦學習:html教學
以上就是php中tr標籤是什麼意思的詳細內容,更多請關注TW511.COM其它相關文章!