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

เปลี่ยนสีพื้นหลังของปุ่มด้วย CSS


หากต้องการเปลี่ยนสีพื้นหลังของปุ่ม ให้ใช้ background-color ทรัพย์สิน

คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อเปลี่ยนสีพื้นหลังของปุ่ม

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         .btn {
            background-color: yellow;
            color: black;
            text-align: center;
            font-size: 13px;
         }
      </style>
   </head>
   <body>
      <h2>Result</h2>
      <p>Click below for result:</p>
      <button class = "btn">Result</button>
   </body>
</html>