Semantically speaking, is there an appropriate place in today's websites (late 2008+) where using the bold <b> and italic <i> tags are more useful than the more widely used <strong> and <em> tags?
|
|
|
|||
|
|
|
|
Sean McMains, charlesroper, if you are putting something in italics because it is Latin, then use |
||
|
|
|
|
Officially, <i /> and <b /> are "presentational" and shouldn't be used. While many developers think that <em /> and <strong /> are presentational, they are not. They are generally italicized and bolded resopectively, but the CSS can (and should, when appropriate) change how the emphasis and strongness could be displayed. Similar things could be done with css on a <span /> tag, and many consider that the preferred method, but it isn't substantiatable with the specification. |
||
|
|
|
|
There are technical rules, but here are my two rules of thumb: 1) If you are writing something where, if spoken, you would emphasize a word, < strong > and < em > are appropriate. (E.g., "You have got to be sh*tting me, Pyle!") 2) If you are emphasizing a word for a technical reason, but would not emphasize the word in spoken conversation, < b > and < i > are appropriate. (E.g., "He boarded the RMS Titanic and sailed away, never to be seen again.") Don't leave out other tags like < cite >, though! |
||
|
|
|
|
It could be argued that there is still a use for the |
||
|
|
|
|
On http://www.webmasterworld.com/forum21/7095-1-15.htm there's a good comment:
|
||
|
|
|
According to the HTML 5 spec,
Generally speaking, "when appropriate" is deemed to be as a last resort, when all other semantic options have been exhausted. "Presentational" though they may be, it would certainly be a disservice to their semantic cousins |
||
|
|
I've been using <b> for years to indicate key words on my web site. I wrote a small utility that crawls the site looking for <b> tags and adds them to an index. I use <strong> when I want to bold a word without adding it to the index. I have used this convention for years -- too late to quit now. |
||
|
|
|
|
I think when you're trying to make your markup meaningful, these are rarely useful. There are, however, new tags that produce some of the same results, but which provide even more semantic value. I like to use the <cite> tag when I'm referring to the name of a book, for example, as it still gets italicised, but the HTML now carries meaning about why. There are a variety of other semantic tags that can also affect formatting listed here: |
||
|
|
|
|
@dannyp, for book titles, you should not use |
||
|
|
|
|
While in general I would stay away from non-semantic tags like I would use Hope this helps. Not sure how to comment (edit: need moar karma!), but this is in reply to Erik's comment. Please read the HTML5 working draft. It gives a good explanation on when to use
"overflow" does not have emphasis over "stack" in the logo, therefore wrapping "overflow" with |
||||
|
|
|
For markup generated by a WYSIWYG editor. |
||
|
|
|
|
Neither <b> nor <i> are semantic tags, so purists would say they should not be used. Where I've seen their use justified are in things like putting online content in print where text was bolded or italicized as a matter of convention, but not as a manner of strengthening or emphasizing content. The easy example is if you're putting online a magazine article that references a book by its title: you may want to put the book title in italics, but the italics are not for emphasis, so the <em> tag would be inappropriate. You could use <i> here, but the semantic thing to do would be to use something like <span class="booktitle"> and then use CSS to make booktitles italics. You are referencing a title, not putting emphasis, and you wouldn't want a screen reader to put verbal emphasis on the title. My personal opinion is to not use either <b> or <i> today, but using <strong> or <em> as their substitutes when you aren't really looking to do anything besides bold or italicize the text is equally incorrect. |
||
|
|
|
Whenever you want to do things incorrectly ... just kidding. The real answer is never, these tags have been deprecated by the W3C |
||
|
|
|
The <b> and <i> tags don't have semantic meaning, whereas <strong> and <em> do. If a reader read the block of text aloud it would react to the <strong> and <em> tags, whereas the <i> and <b> tags would be ignored, and treated and purely visual elements. I tend to regard <i> and <b> as deprecated. |
||
|
|
|
|
When writing websites for mobile devices. They don't always support the 'latest and greatest' standards, are depreciated but not deleted from all modern browsers, and simply take up less space and bandwidth (though in theory the streams are compressed by either the websites or the wireless browser, it can't be counted on). -Adam |
||||||
|
|
|
Never. They are removed in XHTML 2.0 as they are presentational tags. CSS should be used to bold/italicise content. edit: If you're looking for a purely presentational tag, that's what the |
|||
|
|
