How to Change Cursor Color in ASP.NET Core DOCX Editor
27 Aug 20261 minute to read
ASP.NET Core DOCX Editor (Document Editor) default cursor color is black. You can change the color by overriding the CSS property using the class name. The DOCX Editor cursor CSS uses a class named e-de-blink-cursor.
Refer to the following code snippet to change the cursor color to red.
.e-de-blink-cursor {
border-left: 1px solid red !important;
}Output will be like below:
