Re: Spell Check and HTML Style

  •  06-30-2010, 10:49 PM

    Re: Spell Check and HTML Style

    I am able to reproduce this problem in the CuteSoft demo: http://cutesoft.net/example/general.aspx
     
    with the following code snippet:
    1. <span style="font-family: 'Times New Roman'; color: black; font-size: 12pt">Hello World</span>  
    Looks like the single quotes around the font name are causing the problem. Everything is fine if I remove the quotes and use the following snippet:
    1. <span style="font-family: Times New Roman; color: black; font-size: 12pt">Hello World</span>  
View Complete Thread