본문 바로가기

HTML

Colspan&Rowspan

Colspan&Rowspan

<!DOCTYPE html>
<html>
  <head>
    <style>
      table,
      th,
      td {
        border: 1px solid black;
        border-collapse: collapse;
      }
    </style>
  </head>
  <body>
    <table style="width: 100%">
      <tr>
        <th>Name</th>
        <td>hosung</td>
        <td>hosung</td>
      </tr>
      <tr>
        <th rowspan="2">Phone</th>
        <td colspan="2">555-1234</td>
      </tr>
      <tr>
        <td colspan="2">555-8745</td>
      </tr>
    </table>
  </body>
</html>

 

'HTML' 카테고리의 다른 글

TableColgroup  (0) 2023.02.01
TableStyling  (0) 2023.02.01
Padding&Spacing  (0) 2023.02.01
TableSizes  (0) 2023.01.31
Table Borders  (0) 2023.01.31