I have come across a weird selector that is working fine however I don't understand how it is working. All I did was perform a "Copy Selector" using chrome debugging options and it provided me with the selector given below. Could you let me know what does that mean? Its something that I haven't come across.
The HTML markup is:
<ul id="633456">
<li>
<a>A link</a>
<div>
...
</div>
</li>
</ul>
CSS Selector from Chrome debugging tools:
#\36 33456 > li > div { /* Not sure what #\36 33456 means */
...
}
Please let me know how this works. I have created a JSFiddle as well.
Cheers.