CSS reset
A base stylesheet for the Atlassian Design System.Installation
| Install | yarn add @atlaskit/css-reset |
|---|---|
| Source | Bitbucket.org, (opens new window) |
| npm | @atlaskit/css-reset, (opens new window) |
| Bundle | unpkg.com, (opens new window) |
Usage in production environments
We recommend bundling this package with your application, rather than relying on a third-party CDN. If using a CDN, make sure its uptime requirements meet your application needs.
The CSS reset should be the first stylesheet on your page. All other stylesheets should be included after the CSS reset.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Your page</title>
<link rel="stylesheet" href="node_modules/@atlaskit/css-reset/dist/bundle.css" />
<!-- your awesome styles -->
</head>
<body>
<p>Hello world!</p>
</body>
</html>