We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Marking RWD has an isue with the following lines
header li { margin: 0; /* remove the margin used in the mobile design */ } header a { border: 0; /* remove the border used in the mobile design */ }
The li by default has no margin, so i am not sure the purpose of the css directive to remove margins from li elements under the header.
The second point border :0 is better replace by none, since that is a keyword rather than using value 0.
not really
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What was incorrect, unhelpful, or incomplete?
Marking RWD has an isue with the following lines
What did you expect to see?
The li by default has no margin, so i am not sure the purpose of the css directive to remove margins from li elements under the header.
The second point border :0 is better replace by none, since that is a keyword rather than using value 0.
Do you have any supporting links, references, or citations?
not really
Do you have anything more you want to share?
No response
The text was updated successfully, but these errors were encountered: