php中tr标签是什么意思-PHP问题

资源魔 34 0

php中tr标签是甚么意义

tr界说行

th示意头部

td示意单位格

tr不克不及独自存正在,相称于table的属性标签,而th,td也该当放正在tr中。<th>没有光是粗体,仍是居中的。

622f3177493352d7d6f7eedc76c355d.png

<!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标签是甚么意义的具体内容,更多请存眷资源魔其它相干文章!

标签: php php教程 php故障解决 php使用问题

抱歉,评论功能暂时关闭!