vote up 4 vote down star
1

This one has me kind of stumped. I want to make the first word of all the paragraphs in my #content div at 14pt instead of the default for the paragraphs (12pt). Is there a way to do this in straight CSS or am I left wrapping the first word in a span to accomplish this?

flag

6 Answers

vote up 8 vote down check

What you are looking for is a pseudoclass that doesn't exist. There is :first-letter and :first-line, but no :first-word.

You can of course do this with JavaScript. Here's some code I found that does this: http://www.dynamicsitesolutions.com/javascript/first-word-selector/

link|flag
Why wouldn't they have specified a :first-word in the spec? – alex Mar 17 at 0:25
1  
Probably because a "word" is not a well-defined concept in a layout language. Is "half-baked" one word or two? What about "McDonald" and "O'Shea"? What's the first word in "5 + 3 = 8" or "5+3=8"? – Robby Slaughter May 19 at 23:36
vote up 0 vote down

You can use PHP (or other server-side scripting) too.

link|flag
vote up 4 vote down

I have to disagree with Dale... The strong element is actually the wrong element to use, implying something about the meaning, use, or emphasis of the content while you are simply intending to provide style to the element.

Ideally you would be able to accomplish this with a pseudo-class and your stylesheet, but as that is not possible you should make your markup semantically correct and use <span class="first-word">.

link|flag
The javascript answer accepted as correct is potentially more useful, but I believe this one to be the most semantically correct. – Reynolds 17 hours ago
vote up 0 vote down

There isn't a plain CSS method for this. You might have to go with JavaScript + Regex to pop in a span.

Ideally, there would be a pseudo-element for first-word, but you're out of luck as that doesn't appear to work. We do have :first-letter and :first-line.

You might be able to use a combination of :after or :before to get at it without using a span.

link|flag
vote up 4 vote down

Use the strong element, that is it's purpose:

<div id="content">
    <p><strong>First Word</strong> rest of paragraph.</p>
</div>

Then create a style for it in your style sheet.

#content p strong
{
    font-size: 14pt;
}
link|flag
It's ironic that your "First Word" is actually 2 words! ;) – Bobby Jack Sep 11 '08 at 10:52
Yeah, I thought the same thing when I was writing the answer. – Dale Ragan Sep 11 '08 at 16:49
vote up 2 vote down

You have to wrap the word in a span to accomplish this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.