我正在尝试让JEditorPane突出显示显示行的整个宽度。我尝试过的所有示例都只突出显示文本内容。例如,如果我有以下内容:
---------------------------------
|Here is some text |
|some more text |
---------------------------------
在上面的框中表示的JEditorPane中,突出显示第一行只突出显示以下文本(在下面用[和]表示)。
---------------------------------
[Here is some text] |
|some more text |
---------------------------------
我希望它可以像以下一样突出JEditorPane的全部宽度:
---------------------------------
[Here is some text ]
|some more text |
---------------------------------
有没有办法做到这一点?