使用 CSS 创建带边框的链接按钮


要创建带边框的链接按钮,可以尝试运行以下代码 −

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         a:link, a:visited {
            background-color: white;
            color: black;
            border: 1px solid blue;
            padding: 30px 30px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
         }
         a:hover, a:active {
            background-color: red;
            color: white;
         }
      </style>
   </head>
   <body>
      <a href = "demo.html" target = "_blank">Demo Link</a>
   </body>
</html>

更新于: 30-6-2020

2 千次观看

开始您的 职业生涯

完成课程以获得认证

开始学习
广告