CSS multiname reference (e.g. "name.secondname")
Possible duplicate:
CSS selector with period in ID
HTML:
<input id="name.secondname" ... > How to define CSS style for 'name.secondname'?
#name.secondname { ... } does not work.
+4
2 answers
You need to run like this:
#name\.secondname I should note that this seems to have been asked before: CSS selector with period in ID
+6