Is there a way to change the styles of the vertical bar in a text input? [duplicate]

1

I have approximately 1 hour looking for a property that tells me how to change the | of the text inputs is there any way?

I mean the | that appears and disappears as it is written

    
asked by Victor Lozada 14.08.2018 в 02:21
source

1 answer

2

You can modify the color with caret color

input{
  caret-color: red;
}
<input type="text"/>
    
answered by 14.08.2018 / 03:18
source