Is it problematic to use a space character in an element ID? For example, like this:
<li id='something with spaces'>Test123</li>
I typically avoid using spaces in IDs, but I've encountered a situation where it might be necessary.
What potential challenges could arise when it comes to scaling, different browsers, scripting, or CSS styling?
Are there any resources discussing "bad characters" that can technically be used, but are not recommended?
Thanks -