quotes in class/id names
am 18.12.2007 16:47:49 von unknownPost removed (X-No-Archive: yes)
Post removed (X-No-Archive: yes)
richard wrote:
> are the quotes in like class="name" absolutely necessary?
In XHTML, yes. In HTML, not if the name consists of only letters,
digits, underscores, hyphens, periods, and colons.
But it's still good practice to use them. It makes your code more
readable, because inconsistency makes code more difficult to read. You
*will* need quotes, for example, for URLs that contain slashes, text
field values that include spaces, and so forth. It also makes the code
easier to write: you don't have to keep thinking, for each attribute,
"Wait, can I get by without quotes on this one?" It's more flexible
because, for example, you can use multiple classes as in
class="thisclass thatclass" without making them a special case.
Besides, why would you want to omit them?
Post removed (X-No-Archive: yes)