vote up 2 vote down star

Okay, so I know that in HTML you can use the <b> tag, but isn't there a "weight=bold" attribute that I can use in the <p> tag?

Or is that in CSS, or Javascript?

flag

8 Answers

vote up 14 vote down

You're thinking of the CSS property font-weight:

p { font-weight: bold; }
link|flag
1  
Well, hopefully he doesn't copy what you have exactly...would mess a few things up :) – Darryl Hein Mar 16 at 5:22
1  
It's a syntactically-correct example. The OP will have to decide just how he wants it to be used. – mipadi Mar 16 at 15:13
vote up 3 vote down

Its in CSS you have to set font-weight: bold; as style

link|flag
vote up 0 vote down

It's all historical and dates from a time where dinosaurs walked the earth and CSS didn't exist.

More seriously, forget about the b tag and use font-weight:bold in a CSS rule :)

link|flag
vote up 1 vote down

you could also do <p style="font-weight:bold;">bold text here</p>

link|flag
inline styles are about to be deprecated in html 5 :P – lock Mar 16 at 5:16
Are you sure? i thought only inline style tags were to be deprecated, ie. (big,s,strike,tt,u) – John Boker Mar 16 at 12:53
1  
Even if they're not deprecated, they're almost always a bad idea. You might as well go back to using <font> tags. – tgecho Mar 16 at 13:51
vote up 4 vote down

If the text's meaning is semantically 'strong', use the <strong> element. If not, use a semantic named class and reference it in your CSS.

<span class="important-message">I'm important!</span>

.important-message {
   font-weight: bold;
}

Some people still use the <b> element as a presentational hook, but it hasn't been deprecated, though most people favour the <strong> element nowadays. Just make sure they are used correctly.

link|flag
Yes, there is <strong> now. – Garrett Mar 16 at 5:10
It has been deprecated all right. ;-) – Cerebrus Mar 16 at 5:11
Thanks guys for clearing that up. – alex Mar 16 at 5:46
<b> is NOT deprecated. It is still supported in HTML 4.01, XHTML 1, XHTML 1.1, and even the upcoming HTML 5. Its deprecation is a myth. Whether it should be deprecated is another matter. It isn't. See also w3.org/TR/html401/index/elements.html – thomasrutter Mar 16 at 5:53
Small technicality: a class name cannot be called 'semantic' because it is not a controlled vocabulary: there is no standard anywhere that defines what "important-message" means across apps. Naming your classes by their function is still a good idea because it promotes readability and best practice. – thomasrutter Mar 16 at 5:54
show 1 more comment
vote up 9 vote down

Also consider the <strong> tag. It's much better for screen readers and therefore better for accessibility. I'm also thinking that spiders may use <strong> tags to determine important content.

Although, if you are bolding the entire paragraph, you may not want to use it--I'm not sure what the affect on screen readers would be.

link|flag
high five, i was just writin' this. <b> has been deprecated for years – nailitdown Mar 16 at 5:20
4  
<b> is NOT deprecated in any current HTML or XHTML standard, nor is it deprecated even in the upcoming HTML 5. <b> and <strong> have distinct meanings; <b> means "bold styled text". <strong> means "stronger emphasis", but does not dictate a text style; browsers default to bold. – thomasrutter Mar 16 at 5:47
The widespread use of <b> has dwindled, but the actual element hasn't been deprecated according to the W3C specs. – alex Mar 16 at 6:17
My bad...don't trust others :) – Darryl Hein Mar 16 at 6:57
1  
The <b> is effectively deprecated in HTML5...and replaced with another <b> tag that has a somewhat different meaning. It's a weird choice, but that's basically what they've done. At any rate, it shouldn't be used to style text as bold. – Chuck Mar 16 at 7:13
show 3 more comments
vote up 0 vote down

On a sidenote the below code will also make it bold.

<strong> text here </strong>
link|flag
... in most browsers ... but only as a side effect of describing the text as having stronger emphasis. – David Dorward Jul 24 at 15:30
vote up 0 vote down

Use the <strong> tag because it's more semantic. <b> has been depreciated so it's best not to use it. Also bold text is given more Search Engine Optimisation (SEO) weight so it's always best to use a real <strong> rather than making a <p> or <span> bold using CSS.

link|flag
Don't use things because they are "more semantic" - use them because they have the semantics that apply to what you are writing. We don't know what the semantics of the text the OP has are. – David Dorward Jul 24 at 15:30

Your Answer

Get an OpenID
or

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