Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shouldn't menu be added to the rule below?
menu
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
The text was updated successfully, but these errors were encountered:
I disagree. menu is currently experimental and only supported by Firefox. It probably shouldn't be added until it is at least partially supported by all the major browsers.
Sorry, something went wrong.
I did a quick check on my Mac and found menu in these UA style sheets:
Chrome 37 and Safari 7:
ul, menu, dir { display: block; list-style-type: disc; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0px; -webkit-margin-end: 0px; -webkit-padding-start: 40px; }
Firefox 32:
ul, menu, dir { -moz-padding-start: 40px; display: block; list-style-type: disc; margin: 1em 0; }
In my opinion, this should justify the addition of menu in the rule that styles html5 elements as block-level elements.
Sounds good to me
5962c89
No branches or pull requests
Shouldn't
menu
be added to the rule below?The text was updated successfully, but these errors were encountered: