sanitize.css is a CSS library that corrects broken and missing styles in all browsers, preserving useful defaults rather than unstyling everything. It’s developed alongside normalize.css, so every normalization includes the browsers or browser versions being targeted, and every opinionated change is marked and documented.
npm install --save sanitize.css
bower install --save sanitize-css
* {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
* {
background-repeat: no-repeat;
}
html {
cursor: default;
}
body {
margin: 0;
}
nav ol, nav ul {
list-style: none;
}
::selection {
text-shadow: none;
}
audio, canvas, iframe, img, svg, video {
vertical-align: middle;
}
svg {
fill: currentColor;
}
table {
border-collapse: collapse;
}
button, input, select, textarea {
color: inherit;
font-size: inherit;
line-height: inherit;
}
textarea {
resize: vertical;
}
a, area, button, input, label, select, summary, textarea, [tabindex] {
-ms-touch-action: manipulation;
touch-action: manipulation;
}
[aria-busy="true"] {
cursor: progress;
}
[aria-controls] {
cursor: pointer;
}
[aria-disabled] {
cursor: default;
}
Visually hidden content should remain accessible
[aria-hidden="false"][hidden]:not(:focus) {
clip: rect(0, 0, 0, 0);
display: inherit;
position: absolute;
}
normalize.css and sanitize.css correct browser bugs while carefully testing and documenting changes. normalize.css styles adhere to css specifications. sanitize.css styles adhere to common developer expectations and preferences. reset.css unstyles all elements. Both sanitize.css and normalize.css are maintained in sync.
At present, sanitize.css supports the current and previous major releases of popular web browsers. When a new version is released, we begin supporting that newer version and stop supporting the third version back. Additionally, many older browsers remain supported without supplementary CSS.
Currently tested and supported browsers in the latest release include Android 4.3-4.4+, Chrome 50-51+, Edge 12-13+, Firefox 46-47+, Internet Explorer 10-11, iOS 7-8+, Opera 37-38+, Safari 8-9+, and Windows Phone 8.1+.
Additionally tested and supported browsers (requiring little supplementary CSS) include Internet Explorer 9 and Safari 7.
sanitize.css is dedicated to the public domain.