CKEditor adds html entities to inline CSS. Is the CSS still valid?
        Posted  
        
            by Mihai Secasiu
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Mihai Secasiu
        
        
        
        Published on 2010-04-01T11:30:54Z
        Indexed on 
            2010/04/01
            11:33 UTC
        
        
        Read the original article
        Hit count: 372
        
I have this piece of code:
<table style="background-image: url(path/to_image.png)"> 
And when I load it in CKEditor it's transformed in:
<table style="background-image: url("path/to_image.png")">
Is this still still valid CSS? Actually I'm not so interested if it's valid but if there would be any problems with any web browser or email client ( the editor is used for composing a html email ). Firefox and Thunderbird seem to be fine with it.
© Stack Overflow or respective owner