Change textarea cursor color in the textarea
问题 I have the following textarea: How can I change the inner cursor color? 回答1: A custom caret can be used with either an .ani or .cur file textarea { cursor: url(cursor.cur); } or textarea { cursor: url(cursor.ani); } For more details regarding carets or .cursor { font-size: 12px; background-color: red; color: red; position: relative; opacity: 0.5; } 来源: https://stackoverflow.com/questions/20324434/change-textarea-cursor-color-in-the-textarea