What's the difference between <b> and <strong>, <i> and <em> in HTML/XHTML? When should you use each?
|
6
|
|
||
|
|
|
|
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:
"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"). |
||||||
|
|
|
<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. |
||||
|
|
|
You could of course override their styling with CSS.
Hope that makes sense. |
||
|
|
|
|
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. |
||
|
|
|
|
As you indicated correctly, |
||
|
|
|
|
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. |
||
|
|
|
|
As the others have stated, the difference is that 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 Pretty slick, huh? This is also the rationale behind defining sub-styles (referenced using the 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. |
||
|
|
|
|
B and I are deprecated, along with FONT. Here's a simple post on it. |
||
|
|
|
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. |
||
|
|
|
|
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". |
||
|
|
|
|
You shouldn't use
|
||
|
|
|
"They have the same effect. However, XHTML, a cleaner, newer version of HTML, recommends the use of the The same goes for the difference between Google dixit: http://wiki.answers.com/Q/What_is_the_difference_between_HTML_tags_b_and_strong |
|||
|
|
|
|
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. |
||
|
|
