Hi,
We are facing issue with html tag specially <ol> tag and <ul> tag is not rendering properly on SSRS report, but in browser it is displaying perfect.
Please provide me best suitable solution to display it on SSRS as it is displaying in browser.
My html text is like below:
<p style="margin-left:0in; margin-right:0in">This Bullet starts with "1"
<ol start="1">
<li>Size - M</li>
</ol>
</p>
<p style="margin- margin-right:0in">
This Bullet starts with "2"
<ol start="2">
<li>Color-Black</li>
</ol>
</p>
<p style="margin- margin-right:0in">
This Bullet starts with "3"
<ol>
<li style="list-style-type:none">
<ol start="3">
<li>HI claimed following:</li>
</ol>
</li>
</ol>
</p>
<p style="margin- margin-right:0in">
This is unordered list
<ul>
<li style="list-style-type:none">
<ul>
<li>HI claimed following:</li>
</ul>
</li>
</ul>
</p>