Michael Mattiacci

Results 4 comments of Michael Mattiacci

The [HTML5 spec](https://www.w3.org/TR/html5/dom.html#the-id-attribute) states that the `id` attribute is allowed to start with numbers, so this may be working as intended.

The root cause is that csslint is no longer maintained: https://github.com/CSSLint/csslint/issues/754. The workaround for general issues is to wrap the code in an ignore block, but IIRC that doesn't help...

I've opened a pull request to fix this, in case we want to avoid #754.

It does seem like most uses of `height: 0` would cause accessibility issues, but what about something like this? ``` css #foo { height: 0; transition: all .5s ease 0s;...