Is there a way to force the Telerik editor to save HTML exactly as I code it? I realize in most instances it might be formatting CSS code correctly, but it is so frustrating when I type in something like this and it gets changed.
style="background:url(images/12.png) center center no-repeat;">
Here is how this is converted when I save it.
style="background-image: url(/images/12.png); background-position: 50% 50%; background-repeat: no-repeat no-repeat;"
The real issue I seem to be having is with the
background-repeat: no-repeat no-repeat.
This seems to cause it to actually repeat. I tested it at http://www.w3schools.com/cssref/tryit.asp?filename=trycss_background-repeaty
and it repeats. If I remove one no-repeat it doesn't repeat at all. I am assuming that there are two no-repeats for x and y.
I would like to test some things here, but Telerik keeps changing it. I know I can do it in my CSS but I just wanted to test it out in the HTML module with inline style and I got frustrated enough to write this post and see if there is a solution.