App下載
首頁htmltdHTML Element Style - 如何聚焦時(shí)向表格單元格添加邊框...

HTML Element Style - 如何聚焦時(shí)向表格單元格添加邊框...

我們想知道如何聚焦時(shí)向表格單元格添加邊框。...

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
table {
  border: 2px solid red;
}

td {
  border: 0;
  padding: 5px;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>cell 1</td>
      <td>cell 2</td>
    </tr>
  </table>
</body>
</html>