| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 | ||||||
Aug
24First letter using diferent color and style
If you want to style first letter different then other on your site you have to apply some css code in your css style.I use that on my web site as you can see.
I use next code:
#maincontent .right_side h2:first-letter {
font-family : "Times New Roman", times, serif;
font-size : 24px;
font-style: italic;
color : #a7c44e;
}Example: i use this combination to make my first letter different color in my case Green color on right side at h2 tag.
You can play with this code any way you want to sweat your needs.
This code work with all modern browsers.
I hope you learn something new today ;).
» Posted in: Css Tutorials
Write a comment
* = required field
















funlw65
on 2008.08.25
Thank you Sasha,this is a good tip.