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.
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.
you cant put "<" and ">" inside resx files
so you should simply do it like this:
<span style='background: red;color: #000000;'>VERDERGAAT</span>
this should be ok now