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?
|
What you are looking for is a pseudo-element 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/ |
|||||||||||||||||||||
|
|
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 |
|||||
|
|
Same thing, with jQuery:
or
(Via 'Wizzud' on the jQuery Mailing List) |
|||
|
|
|
Pure CSS solution: Use the :first-line pseudo-class.
Didn't test that. Pretty sure it will work fine for you tho. I've applied block rules to pseudo-classes before. You might be stuck with a fixed width for every first word, so text-align:center; and give it a nice background or something to deal with the negative space. Hope that works for you. :) -Motekye |
|||||||||
|
|
Use the strong element, that is it's purpose:
Then create a style for it in your style sheet.
|
|||||||||||||||||
|
|
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. |
|||
|
|
|
Here's a bit of JavaScript and jQuery I threw together to wrap the first word of each paragraph with a
You can then use CSS to create a style for It's not perfect, as it doesn't account for every type of whitespace; however, I'm sure it could accomplish what you're after with a few tweaks. Keep in mind that this code will only execute after page load, so it may take a split second to see the effect. |
|||
|
|