View Single Post
Old 12-28-2012, 10:17 PM   PM User | #2
tempz
Regular Coder

 
Join Date: Jul 2012
Location: London
Posts: 436
Thanks: 4
Thanked 80 Times in 80 Posts
tempz is an unknown quantity at this point
Simple method:

Code:
blockquote:first-letter {
    text-transform: uppercase;
}
You should always target the elements you want to style i.e

Code:
h1.myclass a:first-letter {
    text-transform: uppercase;
}
that means: H1 of myclass find "a" tag change first letter to uppercase

When you show code on this forum please place your code with in [CODE][/CODE]

Thankyou
tempz is offline   Reply With Quote