Quote:
Originally Posted by LKJT
Hey would it be possible to make every letter A blue and G red? I've tried doing this using the CSS stylesheet or whatever it is called. Unfortunately it doesn't work. Is it possible?
Maybe using some custom font where certain letters is of a certain color?
Thank you very much.
|
(x)HTML time for you (best done in a
code editor or Sigil)
CSS: .firstRed {font-color: red; } .firstBlue { font-color: blue; }
Now you modify the code
<p class="whatever">
<span class="firstRed">G</span>o to the end</p>
<p class="whatever">
<span class="firstBlue">A</span>nother example</p>