how can i select div?
<div id="languageForm:j_id427:0:j_id432">Test</div>
this code does not work
#languageForm:j_id427:0:j_id432 { color:#00aa00; }
. . . . . . . . . . . . . . . . . . .
:
is a special character in CSS (:hover
)
Use \00003A
to escape it:
#languageForm\00003Aj_id427\00003A0\00003Aj_id432 { color:#00aa00; }
jsfiddle
Note: Don't use \:
because it doesn't work in IE7.
Why the many 0
s? Because the browser will try to read at most 6 characters to parse a unicode constant in CSS files. Without the zeros, it would read \3Aj
and stop with an error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With