What's the difference between <b> and <strong>, <i> and <em> in HTML/XHTML? When should you use each?
|
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.
HTML was never meant to be about styles. Do some searches for "Tim Berners-Lee" and "the semantic web". |
|||||||||||
|
|
|
|||||||||||||||||
|
|
You could of course override their styling with CSS.
Hope that makes sense. |
|||
|
|
|
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. |
|||
|
|
|
As you indicated correctly, |
|||||||
|
|
While 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 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 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". |
|||
|
|
|
"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 use both <strong> and <b>, actually, for exactly the reasons mentioned in this thread of responses. There are times when bold-facing some text simply looks better, but it isn't, necessarily, semantically more important than the rest of the sentence. Here's an example from a page I'm working on right now: "Retrieves <strong>all</strong> books about <b>lacrosse</b>." In that sentence, the word "all" is very important, and "lacrosse" less so--I merely wanted it bold because it represents a search term, so I wanted some visual separation. If you're viewing the page with a screen reader, I really don't think it needs to go out of the way to emphasize the word "lacrosse". I would tend to imagine that most web developers use one of the other, but both are fine--<b> is most definitely not deprecated, as some people have claimed. For me, it's just a fine line between visual appeal and meaning. |
|||
|
|
|
Use them only if using CSS style classes is for any reason unconvinient or impossible (like blog systems, allow only some tags to use in posts and eventually embedded styles). Another reason is support for very old browsers (some mobile devices?) or primitive search engines (that give points for If you can define CSS styles, use them. |
|||
|
|
|
B and I are deprecated, along with FONT. Here's a simple post on it. |
|||||
|
|
You shouldn't use
|
|||
|
|
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. |
|||
|
|
|
Simply We use tag for tect which has high priority for SEO purposes like product name, company name etc. while simple makes it bold. Similar way, We Use for text which has high priority for seo, while to make the text simply italic. |
|||
|
|
<strong>and<em>they simply ignore it. But<b>and<i>works even in Mosaic beta versions (0.61). – Pacerier Jan 26 at 10:21