I want to remove a style from some selected text. How do I do that? The remove format doesn't do it.
For example, if I have html like the following:
<div class=abc>Line #1</div>
<div class=abc>Line #2</div>
in WYSIWYG (Normal) mode, how do I end up with html that looks like the following without going into html mode:
<div>Line #1</div>
<div class=abc>Line #2</div>
Darryl