หากต้องการเปลี่ยนสีพื้นหลังของปุ่ม ให้ใช้ 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>