首页htmlborder_collapseCSS Property Value - 如何border-collapse: collapse;

CSS Property Value - 如何border-collapse: collapse;

我们想知道如何border-collapse: collapse;

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of setting table border</title>
<style type="text/css">
table {
  width: 300px;
  border-collapse: collapse;
}

table, th, td {
  text-align: left;
  border: 1px solid #000000;
}
</style>
</head>
<body>
  <table>
    <caption>User Info</caption>
    <tr>
      <th>Name</th>
      <th>Email</th>
    </tr>
    <tr>
      <td>John</td>
      <td>john@mail.com</td>
    </tr>
  </table>
</body>
</html>