返回table 的......登陆

table 的设置

电动机2019-03-27 16:29:24330

<!DOCTYPE html>

<html>

<head>

<title>表格(table)</title>

<link rel="shortcut icon" type="image/x-icon" href="">

<link rel="stylesheet" type="text/css" href="">

<style type="text/css">

*{margin: 0px;padding: 0px;}

     table{border:1px solid #ccc;border-collapse: collapse;}

     tr td{border:1px solid #ccc;border:1px solid #ccc;width: 100px;}

     tr th{border:1px solid #ccc;border:1px solid #ccc;width: 100px;}

</style>

</head>

<body>

   <table>

    <tr>

    <th>1</th>

    <th>2</th>

    <th>3</th>

    <th>4</th>

    <th>5</th>

    </tr>

    <tr>

      <td colspan="5"> 合并列 </td>

     

    </tr>

    <tr>

      <td rowspan="2"> 合并行1 </td>

      <td>  2</td>

      <td>  3</td>

      <td>  4</td>

      <td>  5</td>

    </tr>

    <tr>

     

      <td> 2 </td>

      <td> 3 </td>

      <td> 4 </td>

      <td> 5 </td>

    </tr>

   </table>

</body>

</html>



最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送