The tt, i, b, big, and small tags are not deprecated, but it is possible to achieve richer effect with CSS. What is the merit of using these?
|
|
|
|
|
|
|
Although yes, it's shorter and there's ease of use, the issue at hand is semantic markup -- basically, there's no question about what If you're working for a US government agency (any government in the US, not just feds), you're bound by the American with Disabilities Act. Feds are specifically bound by Section 508 ... but in practice, it's also good to follow the Web Content Accessibility Guidelines. Companies would be wise to also follow the guidelines to reduce the possibility of a lawsuit and then having to redesign the side to correctly handle these issues. ps. The one element that you didn't mention that's always bugged me is specifically |
||
|
|
|
|
Well, it might be said that a styled |
||
|
|
|
|
small, b and i all have new/better definitions in the HTML5 spec and will have greater meaning in the future. Other people like to use b or i elements to denote purely visual markup, for example in the Nifty corners technique for adding rounded corners to boxes |
||||
|
|
|
Compare the following:
and
and
Definitely |
||
|
|
The only "merit" I can think of is that they are support by all the major browsers and they are simple to us. For example, if all you want to do is italicize some piece of text, then just use i. It's much more simple than writing the equivalent in CSS and you'll know that it will work as expected. |
||
|
|
|
|
Perhaps it is because of semantics. It makes more sense for someone (robot, user) who reads the code to have Span could contain anything, but, generally, strong contains something to be noticed. |
||
|
|
|
|
The biggest merit of using these, is that it allows the browsing item (web browser etc.) to decide how the text in question is rendered. These were created to account for the fact that not all browsers might be able to display something in bold (anyone remember lynx?). Most of the time this isn't a problem anymore technology has moved a lot faster than the current standards, but it certainly was in the past. You figure that a phone with a color screen was a rarity 8 years ago, where it is commonplace now. |
||
|
|
|
|
You shouldn't use these as they specify how to display rather than specifying the type. I.E. they couple the representation with the content which is bad for maintainability. So instead of |
|||
|
|
