vote up 5 vote down star

If it said "oneword", then I could write "#oneword", but what do I write when there is a space in the word?

flag

78% accept rate
Having two ID's is like having two Social Security Numbers. – Andy Ford Oct 30 '08 at 14:34

4 Answers

vote up 19 vote down check

If it contains spaces, it is not legal HTML. You shouldn't expect this to work. Here is the relevant section of the HTML 4.01 specification.

[EDIT] As others have noted, you can get around this by assigning one or more class names to the div and using a class name to do the selection.

link|flag
vote up 1 vote down

Change it to two-words. Like others said, you cannot use spaces for the id, but you can for the class.

#two-words { font-family: arial; }
.center { text-align: center; }
.bold { font-weight: bold; }

<div id="two-words" class="center bold">STUFF HERE</div>
link|flag
vote up 4 vote down

You should not use whitespace in the ID element, as whitespace is generally accepted as a selector combinator.

link|flag
vote up 13 vote down

You can't have multiple words for the id, but you can for class.

<p class="one two">lalala</p>

.one {
    color: black;
}

.two {
    font-weight: bold;
}
link|flag

Your Answer

Get an OpenID
or

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