我想制作下表

时间:2017-02-11 22:12:44

标签: html

enter image description here enter image description here

  [1]: https://i.stack.imgur.com/PbDnR.png

我还没有尝试过,但它会使用标签和表格。 我是菜鸟,所以我需要帮助。

2 个答案:

答案 0 :(得分:1)

我希望你能找到这个有用的东西:

    <!DOCTYPE html>
<html>
<head>
<title>table demo</title>
<style>
    table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
</style>
</head>
<body>
    <table>
  <tr align="center">
    <th>Name</th>
    <th>Telephone</th>
    <th>e-mail</th>
    <th>City</th>
  </tr>
  </table>
<hr>
  <table>
  <tr align="center">
    <th>Name</th>
    <th>Telephone</th>
    <th>e-mail</th>
    <th>City</th>
  </tr>
  <tr>
    <td>5</td>
    <td>6</td>
    <td>7</td> 
    <td>8</td>   
  </tr>

</table>
</div>
</body>
</html>

答案 1 :(得分:0)

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
    <title></title>
</head>
<body>
<hr/>
<table class="finaltable" border="2">
    <tr>
        <td>final</td>
        <td>hii</td>
        <td>hii</td>
        <tr></tr>
        <tr>
    </tr>
</table>
<table class="finaltable2" border="2">
    <tr>
        <td>final</td>
        <td>hii</td>
        <td>hii</td>
        <td>hii</td>
    </tr>
    <tr>
        <td>final</td>
        <td>hii</td>
        <td>hii</td>
        <td>hii</td>
    </tr>
</table>
</body>
</html>