首页htmltdHTML Element Style - 如何以百分比设置表高度...

HTML Element Style - 如何以百分比设置表高度...

我们想知道如何以百分比设置表高度。...

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
table {
  border-collapse: collapse;
}

td {
  border-bottom-style: solid;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>Test</td>
      <td>Test</td>
    </tr>
    <tr>
      <td>Test</td>
    </tr>
  </table>
</body>
</html>