कर्सर का रंग सेट करने के लिए, CSS कैरेट-रंग . का उपयोग करें संपत्ति। कैरेट-कलर प्रॉपर्टी को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!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>