App下載
首頁(yè)htmltdHTML Element Style - 如何當(dāng)懸停時(shí)更改表格單元格背景顏色

HTML Element Style - 如何當(dāng)懸停時(shí)更改表格單元格背景顏色

我們想知道如何當(dāng)懸停時(shí)更改表格單元格背景顏色。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
tr {
  color: #222;
  background-color: #f0f0f0;
}

tr:hover {
  color: #fff;
  background-color: #0080ff;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>Sample</td>
      <td>Text</td>
    </tr>
  </table>
</body>
</html>