UEditor Baidu rich text editor - source code, line number misplacement problem handling

The line number is misplaced, causing the mouse to be unable to locate accurately, and the source code is edited, as shown in the figure:
insert image description here

After debugging, it was later found that it was caused by a style conflict, just block this css style:

span,
i {
    
    
  vertical-align: middle;
}

Guess you like

Origin blog.csdn.net/u013299635/article/details/125160924