代码示例:(标识:css_navbar_vertical_1)
<!DOCTYPE html>
<html>
<head>
<style>
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li a {
  display: block;
  width: 60px;
  background-color: #dddddd;
}
</style>
</head>
<body>

<ul>
  <li><a href="#home">Home</a></li>
  <li><a href="#news">News</a></li>
  <li><a href="#contact">Contact</a></li>
  <li><a href="#about">About</a></li>
</ul>

<p>背景色被添加到链接以显示链接区域。</p>
<p>请注意,整个链接区域都是可单击的,而不仅仅是文本。</p>

</body>
</html>
运行结果: