ในการตั้งค่าสีเคอร์เซอร์ ให้ใช้คุณสมบัติ CSS caret-color คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อใช้คุณสมบัติคาเร็ตสี
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> .demo { caret-color: blue; } </style> </head> <body> <p>Place the mouse cursor below to see a blue color cursor</p> <input class = "demo" value="Blue Cursor"><br><br> </body> </html>