vote up 4 vote down star

(This is more of a curiousity question than any pending disaster :D )

So the <b> and <i> tags have been around since near the beginning of the web (I assume). But now we have CSS and many people apposing "stylistic html tags." They are stylistic tags, but they're really not so bad, as they save us from having to make a <span class="bold"> a whole bunch of times, reducing download times. Seeing as they don't take up much space, are easy to use, can possibly be useful to screen-readers, search engines, and other applications that don't care much about how a document looks, and removing them would break TONS of html code, I'm guessing probably not, but I still wanted to bring up the topic. :)

flag

As soon as there is ONE (X)HTML standard (singular!) and all browsers support it FULLY - yes :-) Don't hold your breath, though...... – marc_s Aug 28 at 21:38

8 Answers

vote up 31 vote down check

If you end up doing <span class="bold"> a lot you are not correctly using either span, nor class names. Class names should tell you what the tag is, not what it looks like.

The correct replacement for <b> and <i> are <strong> and <em>, and they should be used to note that the specific text inside has a different meaning than the surrounding text.

link|flag
5  
+1 for bringing up markup relating to meaning instead of presentation. – Andrew Coleson Aug 28 at 18:48
2  
<strong> is only a replacement for <b> where the author intends emphasis of a section of text, and <em> only a replacement for <i> when indicating where the stress in a sentence lies. For other purposes, such as employing typographical conventions like italicising a ship's name, using those tags would be completely wrong. HTML 5 encourages <i> for ship's names and the like. If the text is being made bold or italic for purely presentation reasons, (and we all like to make our web sites look nice) <span> with appropriate categorizations in the class attribute is the correct form. – Alohci Aug 28 at 20:25
Actually, when I say <span> is the correct form, I mean use <span> or <div> in the absence of a more semantic element in the specific context of the text on the page. What matters is the categorization, which can then be styled with CSS. – Alohci Aug 28 at 20:30
@Alohci: I agree with you that, when lacking a semantic element, you should use <span> or <div>, but generally they are overabused, and used in place of perfectly semantic tags. – voyager Sep 2 at 14:56
vote up 9 vote down

They are deprecated now. In the current Doc types. However, it will probably be a very long time, if ever before major players in the browser market decide to actually drop support for it.

I would shy away from using them in my markup as much as possible (html email being an exception). Because you never know when a browser (possibly a mobile browser, as that market is so volatile right now) may decide not to support those deprecated tags.

link|flag
1  
My guess would be that they never drop support for it. No point and there will be sites out there that will use it till the end of time. – Kevin Aug 28 at 18:43
@Kevin: unfortunately, yes. – Kawa Aug 28 at 18:49
1  
They're set to be undeprecated in HTML 5. It's kind of a dumb choice IMO, but that is the plan. – Chuck Aug 28 at 18:58
@Chuck: not so dumb, if you think about it. b and i where added along with font. I'd like to think that people have stopped using font, but I know that to be false. – voyager Oct 28 at 13:39
They have never been deprecated. See <w3.org/TR/html401/…;. – ms2ger Oct 28 at 15:31
vote up 6 vote down

I believe the "separate style from presentation" guideline is to use <em> and <strong> instead of <i> and <b>, no <span> required.

link|flag
vote up 1 vote down

Great question, and I'd suggest that:

YES, they SHOULD be deprecated. They're a styling tag, and add no content.

No, they WON'T be deprecated because they're so ingrained that it'd be a nightmare to take out.

That said, very likely that all browsers would continue to support the <b> and <i> tags.

link|flag
vote up 0 vote down

In XHTML 2.0 they are. I'm not sure about HTML 6 (if that ever comes), but I think it will. But it's really useless to think about it right now, since in 2130 the same browsers must still work and the nowadays website must still be available for anyone then. You can always change it later using javascript or something.

link|flag
1  
XMTML 2.0 seems to be doing friends with the Dodo, even before it got off the ground webmonkey.com/blog/… – voyager Aug 28 at 18:47
vote up 0 vote down

I doubt very much whether browsers would drop support for them. However, if the W3C validater raises an error for pages utilising them then I feel, over time, there use will depreciate. It takes time, but people do change habits - look at the once ubiquitous FONT tag, for instance.

link|flag
This might be because there are obviously better ways of doing things than the font tag - CSS works so well now you don't need the font tag any more. However, using <strong> has no advantages of <b>, so <b> will probably stick around longer. – Colen Aug 28 at 18:53
The fact that <font> is used less and less each day, doesn't mean that we don't see things like <span class="italics">My text is <span class="bold">great!</span></span>, that is equally nefarious. Not everyone on the internet gets CSS. As a matter of fact, a great percentage of the web has been made with MS Word. – voyager Aug 28 at 19:00
vote up 0 vote down

Don't forget the IE-6 browser folks!!
This browser has partly problems with the <strong> tag when it is used inside the caption of an <a></a> tag.
example:
<a><strong>Hello</strong></a>
The IE-6 creates a linebreak at the screen before the opening <strong> tag and after the closing </strong> tag. Not so by using the <b>(bold) tag instead. Everything is shown correctly then.

regards, Matthias

link|flag
vote up -2 vote down

if they become deprecated, the name "HTML" as is (hypertext markup language) would become senseless. as it wouldn't be the html-code marking some text as bold but it would be the CSS.

in my opinion: no, they don't get deprecated too soon...

regards

link|flag
2  
That is what <strong> and <em> are for. You don't say this is bold, but rather you say this is emphasized – voyager Aug 28 at 18:48
So any markup language in which you can't specify that text is to be set in bold type is senseless? That seems pretty senseless to me. – Chuck Aug 28 at 18:59
@Chuck: not any. html. bold was an example. well in fact you may see it how you want it. one way is to say we mark up the format (example bold, italic) or we mark up the logical content of a document (example em, etc). guess it's a question of the definition of the abbreviation "html". in my opinion i think it's not good to deprecate formatting tags. – Atmocreations Aug 28 at 20:38

Your Answer

Get an OpenID
or

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