Here is my html code:
<p><span style="background:lime;Color:Red;">Contrary to popular belief, <b><u>Lorem Ipsum is not simply</u></b> random text. It has roots in a piece of classical Latin literature from <span style="background:blue;">45 BC, making it over 2000 years</span> old. Richard McClintock, </span><b>
From above code, i need to remove the background attributes & value using C# from all the spans. The other values in style tag should remain. Eg:
<span style="background:lime;Color:Red;">Contrary to popular belief,.....</span>
should look
<span style="Color:Red;">Contrary to popular belief,.....</span>
Pls help...!