首页htmlborderPage Widget - 如何悬停时添加圆角边框

Page Widget - 如何悬停时添加圆角边框

我们想知道如何悬停时添加圆角边框。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
a {
  text-align: center;
  color: #4096ee;
  text-decoration: none;
  padding: 6px;
  postion: absolute;
}

a:visited {
  font-weight: bold;
  color: #4096ee;
  text-decoration: none;
}

a:hover {
  font-weight: bold;
  border-radius: 5px;
  color: #4096ee;
  padding: 4px;
  border: solid 2px;
  border-color: #303030;
  text-decoration: none;
}

a:active {
  color: white;
  text-decoration: none;
}
</style>
</head>
<body>
  <div class="navigation">
    <a href"#">LINK 1</a> 
    <a href"#">LINK 1</a>
        <a href"#">LINK 1</a>
        <a href"#">LINK 1</a>

  </div>
</body>
</html>