Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

สร้างปุ่มลิงก์ที่มีเส้นขอบโดยใช้ 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>