1. 程式人生 > >html表格的css樣式

html表格的css樣式

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <title>table-test</title>
  <style>
    table {
      border: solid 1px lightblue;
    }
  </style>
</head>
<body>
  <table>
    <tr>
      <td>hellow</td>
      <td>world</td
>
<td>hellow</td> <td>world</td> </tr> <tr> <td>hellow</td> <td>world</td> <td>hellow</td> <td>world</td> </tr> <tr> <td>hellow</td> <td
>
world</td> <td>hellow</td> <td>world</td> </tr> </table> </body> </html>

這裡寫圖片描述

  <style>
    table, tr {
      border: solid 1px lightblue;
    }
  </style>

這裡寫圖片描述

  <style>
    table, tr, td {
      border: solid 1px lightblue
; }
</style>

這裡寫圖片描述

  <style>
    table {
      border-collapse: collapse;  //設定是否將表格邊框摺疊為單一邊框
    }
    table, tr, td {
      border: solid 1px lightblue;
    }
  </style>

這裡寫圖片描述
這裡寫圖片描述