I have a css class, which changed the font color. I don't find a solution via CSS, how this class could only change the font color of letters.
CSS
.blue{color:blue;}
HTML
<span class="blue">stackoverflow</span>
I need a better solution for the brackets ()
<span class="blue">stack</span>(<span class="blue">x</span>)<span class="blue">overflow</span>
This should also work for:
<span class="blue">stack(x)overflow</span>
The brackets should be still in black. If it is impossible only with CSS, how do to this with JavaScript or PHP?