vote up 0 vote down star

Possible Duplicate:
What’s the difference between <b> and <strong>, <i> and <em>?

Duplicate of

What are the differences between <b>text</b>, <strong>Text</strong> and <span class="bold">Text</span> ?

Which is best standard way and why?

What if I use <b>text</b> and CSS b {font-weight: bold}?

What if I use <span class="bold">text</span> and CSS .bold {font-weight: bold}?

flag

42% accept rate
1  
Duplicate: stackoverflow.com/questions/271743/… and stackoverflow.com/questions/1326015/… – Sinan Ünür Oct 21 at 19:32
it's not duplicate – Jitendra Oct 21 at 19:46

closed as exact duplicate by Sinan Ünür, Onorio Catenacci, Chuck, Malfist, Larsenal Oct 21 at 19:58

4 Answers

vote up 4 vote down check

The <b> tag is from older versions of HTML and is generally not suggested, as CSS provides greater flexibility. As pointed out in a comment to my answer, HTML5 apparently resurrects this tag - albeit in a form that will likely just confuse the matter further.

The <strong> tag helps screen readers recognize emphasis and should be used as such.

The CSS class is the modern method and allows you to control presentation separately from markup. This is the one you should use for visual and not semantic emphasis.

link|flag
<b> is back in HTML5, with a somewhat odd semantic along the lines of "text that would normally be set in boldface in a written work but without conveying actual emphasis, such as key words in a technical manual." – Chuck Oct 21 at 19:38
but my point is if for only visual we can use like this <b>text</b> and in css b{font-weight:bold} – Jitendra Oct 21 at 19:39
1  
@Jitendra: Yes, and if only for bludgeoning, we can use a baseball bat or a hammer. – Chuck Oct 21 at 19:42
1  
@Jitendra: Personally I would prefer CSS styling for the b element. It is much quicker to type... @Chuck: /agree on the oddness of that definition. – Will Bickford Oct 21 at 19:45
@Will Bickford: I think the only reason for not using <b> i think <b> would be removed from future browser or xhtml versions. – Jitendra Oct 21 at 19:52
show 2 more comments
vote up 0 vote down

I believe the best way to go is the using a CSS class. That approach allows me to separate the content and the styling. It also provides me an easier way to change styling on the text by changing the CSS class rather than the actual html markup.

link|flag
see my question again – Jitendra Oct 21 at 19:50
vote up 3 vote down

All three, in theory, wind up doing the same thing, visually, in the browser. However, they have a different "meaning":

  • The <b></b> tags say to make the text bold. They're formatting
  • The <strong></strong> tags say that the contents are, semantically, to stand out
  • The <span class="bold"></span> tags say that the contents are grouped in some way, and give no other real information about it.

The preferred method, to the best of my knowledge, is <strong></strong>, since that indicates that the text needs to stand out semantically... and lets the browser make them stand out visually (or audibly if a screen reader).

link|flag
vote up 2 vote down

<b> and <span> have no semantics associated with them—<strong> does. Note however that this has nothing to do with the way the element is rendered, be it bold, italics, or anything fancy.

You should use <strong> to mark passages of text with strong emphasis, and use CSS directives to control the rendering.

link|flag
But strong is for screen reader not only for visual – Jitendra Oct 21 at 19:55

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