首页htmlui_olHTML Element Style - 如何添加边框半径到li项

HTML Element Style - 如何添加边框半径到li项

我们想知道如何添加边框半径到li项。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
li.home {
  background-color: red;
  border: 2px solid black;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-border-left: 0px;
  -moz-border-left: 0px;
  border-left: 0px;
}
</style>
</head>
<body>
  <li class="home"><a href="">home</a></li>

</body>
</html>