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

สร้างปุ่มที่เลื่อนได้ด้วย CSS


ใช้ CSS :hover ตัวเลือกเพื่อสร้างปุ่มที่เลื่อนได้ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อสร้างปุ่มที่เลื่อนได้:

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         .btn {
            background-color: yellow;
            color: black;
            text-align: center;
            font-size: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 3px dashed blue;
         }
         .btn:hover {
            background-color: orange;
            color: black;
            border: 3px solid blue;
         }
      </style>
   </head>
   <body>
      <h2>Result</h2>
      <p>Click below for result:</p>
      <button class = "btn">Result</button>
   </body>
</html>