I am currently working on styling the word "Siteripe". Each letter should have a different color, just like it is shown on this website. I have successfully styled only the first letter using the following CSS code:
#namer:first-letter {
color:#09C;
font-size:1.1em;
font-weight:bold;
}
Since there are eight(8) letters in the word, I am wondering how to style the remaining seven? I tried the CSS styling below but it didn't work. Is there a way to style each letter individually without wrapping them in spans?
#namer:(1)-letter {
color:#09C;
font-size:1.1em;
font-weight:bold;
}