Okay, maybe I'm dense but here's what I have so far and what I'm trying to do:
Code:
h1 {
font-size: 22pt;
color: #000098;
font-weight: 200%;
margin: 0px 0px 15px 5px;
}
What I want to do is modify this so that the first letter of every word within the h1 element is red (#980000)?
I thought some variant of first-letter or something would work but it only applies to the first letter of the first word in the h1 element, I need to apply the red coloring to every word's first letter and really don't want to use font tags within the HTML.
Any suggestions are appreciated, thanks,
Scott