Hi, I have a display issue I hope someone can help me with.
When I apply a class to a block of text in the editor, it creates a span tag surrounding the text and assigns
its class attribute properly. The problem is when I highlight that same block of text and apply
a specific font, the font from the CSS class is displayed in the editor, not the inline style font
value.
The HTML resulting from this is :
<P> <SPAN style="FONT-FAMILY: Times; FONT-SIZE: 24pt" class=Headline>This is a test</SPAN></P>The HTML is what I expect, but the editor displays the font as Verdana (which is specified in the Headline class), not Times. If I paste this HTML into a browser, the font displays as times. Does the editor handle style inheritance differently than the browser?
