How to change the cursor color using CSS in Blazor Document Editor
14 Nov 20221 minute to read
Document Editor default cursor color is black. The user can change the color by overriding the css property using class name. The Document editor cursor css have a class named e-de-blink-cursor
.
Refer the below code snippet to change the cursor color to red.
.e-de-blink-cursor {
border-left: 1px solid red!important;
}
Output will be like below: