yuguang / fiddlesalad

An online playground with an instantly ready coding environment. Combine language preprocessors, CSS, HTML and JavaScript to create and share coding examples.
fiddlesalad.com
GNU General Public License v3.0
232 stars 80 forks source link

CSS ids not working #9

Closed mikelyons closed 11 years ago

mikelyons commented 11 years ago
div{display:none;} 

works but not

div#1{display:none;}
yuguang commented 11 years ago

That's not a valid CSS id http://stackoverflow.com/questions/70579/what-are-valid-values-for-the-id-attribute-in-html

On Mon, Nov 19, 2012 at 8:36 PM, Mike Lyons notifications@github.comwrote:

div{display:none;}

works but not

div#1{display:none;}

— Reply to this email directly or view it on GitHubhttps://github.com/yuguang/fiddlesalad/issues/9.

mikelyons commented 11 years ago

You, sir, prove a gentleman and a scholar.