Is there a way to change the CSS of a single character on a complete page:
E.g.
I have few divs on my page
<div class="a">
abcd
</div>
<div class="b">
abcd
</div>
<div class="c">
abcd
</div>
<div class="d">
abcd
</div>
And I want to change CSS of character "d" but only in div that belongs to class "c"
Is there a way to do that.
P.S. I want to change the font of that one single character
din a<span>, you can put the styles on the span. so, yes you can, but you'll have to do some DOM modifications.