Possible Duplicate:
What’s the difference between <b> and <strong>, <i> and <em>?
Seems both of them can achieve the same effect for me.
|
|
Seems both of them can achieve the same effect for me.
|
||||||||
|
closed as exact duplicate by therefromhere, Chuck, erikkallen, Dominic Rodger, voyager Sep 25 at 13:16 |
|
|
|
||||||||||
|
|
|
To clarify, from the HTML 4.01 Specification in 9 Text:
EM:
Indicates emphasis.
STRONG:
Indicates stronger emphasis.
and 15 Alignment, font styles, and horizontal rules: TT: Renders as teletype or monospaced text. You'll also note that |
||||||||||||||||||
|
|
|
They can. |
||||||||||||||
|
|
|
|
||||||||
|
|
|
So essentially, the The same is true for italics, they are read with "emphasis" and there for |
||||
|
|
|
Some day, when we can count on more than just the 10 "core" font families on the web, we'll be able to use font families with more than just the four standard styles. (Normal, bold, italic, and bold-italic.) We don't have this double paucity in other parts of the design world. I'd like to be able to call up, say, Myriad Semibold, or Futura Extra Black, wherever I have a <strong> tag. These are not "bold". They are distinct weights in very diverse font families that also have proper bolds. |
||
|
|
|
As others have said, It should also be noted that the
and
|
||||
|
|
|
The difference is one makes CSS "gurus" angry when you use it. For all practical purposes it doesn't matter. |
||
|
|
|
|
Thought you might like to know the updates on the above tags. Not much, other than a clearer definition of what they are and how best to use them. Like I have said in the past concerning screen readers, both <i></i> and <b></b> will have no emphasis when a screen reader sees them, however with both <em></em> and <strong></strong> tags the emphasis is pronounced either a little or a lot (strongly). When we build our pages, we should check with the copy writer and use <strong></strong> only when the words or phrases need the emphasis, otherwise if it is strictly for visual appeal and effect, then we should stick to <b></b>. The same applies to <i></i> and <em></em>. When a minor emphasis is needed, then we should use <em>, otherwise it’s <i></i> and again only for the visual effect presented on screen. And now that screen readers better interpret the tags AND can properly identify and place the correct emphasis, we are seeing what was once old and on it’s way to deprecation, being used more correctly AND will be around for a long time. And yes, neither has any effect (positive or negative) on SEO. There is much confusion in the postings above, and honestly not sure where some of the information came from. One last note. If you are looking to emphasize your content for the screen readers, but do not want the visual change on screen, use your css to correct and adjust the tag(s) in question. Happy coding folks! |
|||
|
|