Để đặt màu con trỏ, hãy sử dụng CSS caret-color bất động sản. Bạn có thể thử chạy mã sau để triển khai thuộc tính màu dấu mũ
Ví dụ
<!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>