Forum Moderators: open
The <strong> tag was discussed recently as an accessibility issue here [webmasterworld.com]
The main advantage of CSS is the ability to make sitewide tweaks with very little effort. Getting the css properties of content right in the first place can save you a lot of time later on as well.
Ta
Limbo
There's a current ongoing discussion in this thread
[webmasterworld.com...]
Does the tag you want to use mean anything? For example, <p> tells us that the contents are to be considered a paragraph. <table> means that we can expect some form of tabular data (such as a schedule or calendar... or spreadsheet). But then there are other tags that really don't mean anything. <i>, for example... it means nothing. Usually we use italicized text to emphasize something... But if that's what we really mean, the <em> tag is what we want to use. If you're only using the tag for presentational purposes -- then you shouldn't use it. Either use the appropriate tag (if one exists) or use an anonymous container (such as <div> or <span>) and mark up the contents with CSS.
There are lots of good tags: <address> <cite> <q> <blockquote> <code>
But there are also lots of useless tags: <font> <i> <b> <u>
If you're only using the tag for presentational purposes -- then you shouldn't use it.
That's what I wanted to know. My main concern is to produce pages compliant with the W3C norms and, for what I know, CSS should be used whenever possible. (?)
There are lots of good tags: <address> <cite> <q> <blockquote> <code>
You can't really 'live' without them. :)
But there are also lots of useless tags: <font> <i> <b> <u>
Thanks for clarifying me doc. That's what I wanted to know.
Thanks a lot.