Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-20-2004, 10:57 PM   PM User | #1
banpro
New to the CF scene

 
Join Date: Dec 2003
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
banpro is an unknown quantity at this point
controlling letter colors in text via css

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
banpro is offline   Reply With Quote
Old 01-20-2004, 11:24 PM   PM User | #2
mindlessLemming
Senior Coder

 
Join Date: Oct 2003
Location: Australia
Posts: 1,963
Thanks: 0
Thanked 0 Times in 0 Posts
mindlessLemming is an unknown quantity at this point
The only way I can see this working in all the bad browsers would be to nest a <span> inside your <h1> w/ the first letter of the word in the span.
Horrible way of going about it, but effective.
Code:
h1 {
	font-size: 22pt;
	color: #000098;
	font-weight: 200%;
	margin: 0px 0px 15px 5px;
	}
h1 span{
                color:#980000;
}
__________________

I take no responsibility for the above nonsense.


Left Justified
mindlessLemming is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:03 PM.


Advertisement
Log in to turn off these ads.