커서 색상을 설정하려면 CSS caret-color 를 사용하십시오. 재산. 다음 코드를 실행하여 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>