首页htmlui_olHTML Element Style - 如何悬停以将边框添加到列表项

HTML Element Style - 如何悬停以将边框添加到列表项

我们想知道如何悬停以将边框添加到列表项。

<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
ul {
  padding: 0;
  list-style: none;
}

ul li {
  float: left;
  margin: 10px;
}

ul li img {
  display: block;
  background: #f7f7f7;
}

ul li:hover {
  border: 5px solid #333333;
  overflow: hidden;
}

ul li:hover img {
  margin: -5px;
}
</style>
</head>
<body>
  <ul>
    <li>one</li>
    <li>two</li>
    <li>three</li>
    <li>four</li>
  </ul>
</body>
</html>