Mike Dierken wrote:
The use of 'class' for presentation is wrong anyway (and hopefully obsoleted in HTML 5). And yes, although it is named incorrectly, the attribute can take multiple, space-separated, values.

Not. For. Presentation. ???
Could you explain? I use that to map to CSS all the time. What am I doing
wrong?

He meant that the class names used should not be used to describe the presentation, but rather describe the semantics. It is, however, ok to use stylesheets to add styles based on the classes.

eg.  These are bad practice:
  <span class="bold red-border">
  <p class="blue-text">
  <div class="big bold">

These are better:
  <strong class="warning">
  <p class="summary">
  <h1 class="title"> (or simply <h1>)

--
Lachlan Hunt
http://lachy.id.au/

Reply via email to