How to Change Cursor Color in ASP.NET MVC DOCX Editor
27 Aug 20261 minute to read
The DOCX Editor default cursor color is black. The user can change the color by overriding the CSS property using the class name. The DOCX Editor cursor CSS has a class named e-de-blink-cursor.
Add the following CSS to change the cursor color to red.
.e-de-blink-cursor {
border-left: 1px solid red !important;
}The output is shown below:
