reset.css

A Modern CSS reset by Drone


Project maintained by drone076 Hosted on GitHub Pages — Theme by mattgraham

reset.css

A modern CSS reset

What does it do?

Browser support

Contributing

A bug is a demonstrable problem that is caused by the code in the repository. Good bug reports are extremely helpful - thank you!

Guidelines for bug reports:

  1. Use the GitHub issue search – check if the issue has already been reported.

  2. Check if the issue has been fixed – try to reproduce it using the latest main branch in the repository.

  3. Isolate the problem – create a live example (e.g., on Codepen) of a reduced test case.

A good bug report shouldn’t leave others needing to chase you up for more information. Please try to be as detailed as possible in your report. What is your environment? What steps will reproduce the issue? What browser(s) and OS experience the problem? What would you expect to be the outcome? All these details will help people to fix any potential bugs.

Example:

Short and descriptive example bug report title

A summary of the issue and the browser/OS environment in which it occurs. If suitable, include the steps required to reproduce the bug.

  1. This is the first step
  2. This is the second step
  3. Further steps, etc.

<url> - a link to the reduced test case

Any other information you want to share that is relevant to the issue being reported. This might include the lines of code that you have identified as causing the bug, and potential solutions (and your opinions on their merits).

Feature requests

Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It’s up to you to make a strong case to convince the project’s developers of the merits of this feature. Please provide as much detail and context as possible.

Pull requests

Good pull requests - patches, improvements, new features - are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.

Please ask first before embarking on any significant work, otherwise you risk spending a lot of time working on something that the project’s developers might not want to merge into the project.

Please adhere to the coding conventions used throughout a project (whitespace, accurate comments, etc.) and any other requirements (such as test coverage).

Follow this process if you’d like your work considered for inclusion in the project:

  1. Fork the project, clone your fork, and configure the remotes:

    # Clone your fork of the repo into the current directory
    git clone https://github.com/<your-username>/reset.css
    # Navigate to the newly cloned directory
    cd reset.css
    # Assign the original repo to a remote called "upstream"
    git remote add upstream https://github.com/drone076/reset.css
    
  2. If you cloned a while ago, get the latest changes from upstream:

    git checkout main
    git pull upstream main
    
  3. Never work directly on main. Create a new topic branch (off the latest version of main) to contain your feature, change, or fix:

    git checkout -b <topic-branch-name>
    
  4. Commit your changes in logical chunks. Please adhere to these git commit message conventions or your code is unlikely be merged into the main project. Use Git’s Rebase feature to tidy up your commits before making them public.

    Be sure to add a test to the test.html file if appropriate, and test your change in all supported browsers.

  5. Locally rebase the upstream development branch into your topic branch:

    git pull --rebase upstream main
    
  6. Push your topic branch up to your fork:

    git push origin <topic-branch-name>
    
  7. Open a Pull Request with a clear title and description.

IMPORTANT: By submitting a patch, you agree to allow the project owner to license your work under the same license as that used by the project.

CSS Conventions

Keep the CSS file as readable as possible by following these guidelines: