How do I remove italic effect of <i>
tag so I can do this:
<span>
test<i>test</i>
</span>
I am filling some text in the <i>
tag using jQuery innerHtml, so it comes in italic, but I don't want the italic effect.
Is there any way I can remove the italic effect using CSS?
I cant use a different tag. I can only use the <i>
tag.