tags:

views:

13

answers:

1

I have xml file "Strings.resx" for translation and i want to make some text highlighted i tried to put span some thing like this

<span style="background: red;color: #000000;">VERDERGAAT</span>

and it doesn't work.

A: 

you cant put "<" and ">" inside resx files

so you should simply do it like this:

&lt;span style='background: red;color: #000000;'&gt;VERDERGAAT&lt;/span&gt;

this should be ok now

guy schaller