首页htmltdHTML Element Style - 如何使表单元格可编辑

HTML Element Style - 如何使表单元格可编辑

我们想知道如何使表单元格可编辑。


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
td {
  width: 200px;
}

td:focus {
  border: 2px inset white;
  border-width: 2px;
  content: '';
  position: absolute;
  background: white;
}
</style>
</head>
<body>
  <table>
    <tbody>
      <tr>
        <td contenteditable> Click me</td>
      </tr>
    </tbody>
  </table>
</body>
</html>