vote up 22 vote down star
6

What's the difference between <b> and <strong>, <i> and <em> in HTML/XHTML? When should you use each?

flag

13 Answers

vote up 61 vote down check

They have the same effect on normal web browser rendering engines, but there is a fundamental difference between them.

As the author writes in this discussion list post:

Think of three different situations:

  • web browsers
  • blind people
  • mobile phones

"Bold" is a style - when you say "bold a word", people basically know that it means to add more, let's say "ink" around the letters until they stand out more amongst the rest of the letters.

That, unfortunately, means nothing to a blind person. And on mobile phones and other PDAs, text is already bold because screen resolution is very small. You can't bold a bold without screwing something up.

<b> is a style - we know what "bold" is supposed to look like.

<strong> however is an indication of how something should be understood. "Strong" could (and often does) mean "bold" in a browser, but it could also mean a lower tone for a speaking program like Jaws (for blind people). And strong on a Palm Pilot may be an underline (since you can't bold a bold).

HTML was never meant to be about styles. Do some searches for "Tim Berners-Lee" and "the semantic web". <strong> is semantic - it describes the text it surrounds ("this text should be stronger than the rest of the text you've displayed") as opposed to describing how the text it surrounds should be displayed ("this text should be bold").

link|flag
I think you should add a link to lists.evolt.org/archive/Week-of-Mon-20010521/… for all but the last paragraph, or otherwise indicate that you quote that article. – Kariem Nov 7 '08 at 11:14
1  
Oh, I'm very sorry. Thought I already read that somewhere and did not see the link at the top. – Kariem Nov 7 '08 at 11:34
vote up 23 vote down

<b> and <i> are explicit - they specify bold and italic respectively.

<strong> and <em> are semantic - they specify that the enclosed text should be "strong" or "emphasised" in some way, usually bold and italic, but allow for the actual styling to be controlled via CSS. Hence these are preferred in modern web pages.

link|flag
Good explanation. On the other hand, with HTML 5, <i> and <b> are semantic rather than explicit as well. Sigh. – OregonGhost Nov 7 '08 at 11:28
Are they? I'm behind the times...! – Tony Andrews Nov 7 '08 at 12:30
vote up 5 vote down

<strong> and <em> add extra semantic meaning to your document. It just so happens that they also give a bold and italic style to your text.

You could of course override their styling with CSS.

<b> and <i> on the other hand only apply font styling and should no longer be used. (Because you're supposed to format with CSS, and if the text was actually important then you would probably make it "strong" or "emphasised" anyway!)

Hope that makes sense.

link|flag
vote up 3 vote down

While <strong> and <em> are of course more semantically correct, there seem definite legitimate reasons to use the <b> and <i> tags for customer-written content. In such content, words or phrases may be bolded or italicized and it is generally not up to us to analyze the semantic reasoning for such bolding or italicizing. Further, such content may refer to bolded and italicized words and phrases to convey a specific meaning. An example would be an english exam question which instructs a student to replace the bolded word.

link|flag
vote up 2 vote down

<b> and <i> are both related to style, whereas <em> and <strong> are semantic. In HTML 4, the first are classified as font style elements, and the latter as phrase elements.

As you indicated correctly, <i> and <em> are often considered similar, because browsers often render both in italics. But according to the specifications, <em> indicates emphasis and <strong> indicates stronger emphasis, which is quite clear, but often misinterpreted. On the other hand, the distinction between when to use <i> or <b> is really a matter of style.

link|flag
vote up 1 vote down

As others have said <b> and <i> are explicit (i.e. "make this text bold"), whereas <strong> and <em> are semantic (i.e. "this text should be emphasised").

In the context of a modern web-browser, it's difficult to see the difference (they both appear to produce the same result, right?), but think about screen readers for the visually impaired. If a screen-reader came across an <i> tag, it wouldn't know what to do. But if it comes across a <em> tag, it knows that whatever is within should be emphasised to the listener. And therein you get the practical difference.

link|flag
vote up 1 vote down

As the others have stated, the difference is that <b> and <i> hardcode font styles, whereas <strong> and <em> dictate semantic meaning, with the font style (or speaking browser intonation, or what-have-you) to be determined at the time the text is rendered (or spoken).

You can think of this as a difference between a “physical” font style and a “logical” style, if you will. At some later time, you may wish to change the way <strong> and <em> text are displayed, say, by altering properties in a style sheet to add color and size changes, or even to use different font faces entirely. If you've used “logical” markup instead of hardcoded “physical” markup, then you can simply change the display properties in one place each in your style sheet, and then all of the pages that reference that style sheet get changed automatically, without ever having to edit them.

Pretty slick, huh?

This is also the rationale behind defining sub-styles (referenced using the style= property in text tags) for paragraphs, table cells, header text, captions, etc., and using <div> tags. You can define physical representation for your logical styles in the style sheet, and the changes are automatically reflected in the web pages that reference that style sheet. Want a different representation for source code? Redefine the font, size, weight, spacing, etc. for your "code" style.

If you use XHTML, you can even define your own semantic tags, and your style sheet would do the conversions to physical font styles and layouts for you.

link|flag
vote up 0 vote down

B and I are deprecated, along with FONT.

Here's a simple post on it.

link|flag
Nope, they are not deprecated but it is advised not to use them. – Gamecat Nov 7 '08 at 11:18
vote up 0 vote down

<b> and <i> should be avoided because they describe the style of the text. Instead, use <strong> and <em> because that describes the semantics (the meaning) of the text.

As with all things in HTML, you should be thinking not about how you want it to look, but what you actually mean. Sure, it might just be bold and italics to you, but not to a screen reader.

link|flag
vote up 0 vote down

b or i means you want the text to be rendered as bold or italics. strong or em means you want the text to be rendered in a way that the user understands as "important". The default is to render strong as bold and em as italics, but some other cultures might use a different mapping.

Like strings in a program, b and i would be "hard coded" while strong and em would be "localized".

link|flag
vote up 0 vote down

You shouldn't use <b> and <i> any longer. They were introduced for "layouting" the page and layout is nothing that should be done in HTML, it should be done in CSS. These tags are deprecated in HTML4 and may as well vanish in HTML5/6. Since you can use CSS to declare any tag being bold or italics, there is no need to have extra tags for that.

<em> and <strong> on the other hand only says that something is "emphasized" or "strongly emphasized", it leaves it completely open to the brother how to render it. Most browsers will render em italic and strong bold, but they are not forced to do that (they may use different colors, font sizes, fonts, whatever). You can use CSS to change the behavior the way you desire. You can make em bold if you like and strong bold and red for example.

link|flag
<b> and <i> are NOT deprecated in HTML 4, and are still fully supported even in the upcoming HTML 5. <em> and <strong> are not replacements for them. See also w3.org/TR/html401/index/elements.html – thomasrutter Mar 16 at 5:59
vote up 0 vote down

"They have the same effect. However, XHTML, a cleaner, newer version of HTML, recommends the use of the <strong> tag. Strong is better because it is easier to read - its meaning is clearer. Additionally, <strong> conveys a meaning - showing the text strongly - while <b> (for bold) conveys a method - bolding the text. With strong, your code still makes sense if you use CSS stylesheets to change what the methods of making the text strong is.

The same goes for the difference between <i> and <em> ".

Google dixit:

http://wiki.answers.com/Q/What_is_the_difference_between_HTML_tags_b_and_strong

link|flag
vote up 0 vote down

I do agree with JamShady. Yes, there is not at all a difference in the appearence of the text with i,cite and em. The difference only lie in the semantic of the tags. i and b gives importance to the appearence or look of the particular text. But em and strong gives importance to the meaning of the text. Thank you for the oppotunity.

link|flag

Your Answer

Get an OpenID
or

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