css-maid
v2.0.1
Published
CSS Maid is a tool for that helps clean up & reset default css! It resets default padding & margin, remove text-decoration on anchor tag, and many more!
Downloads
55
Readme
CSS Maid 🧹
What is it?
CSS Maid is a tool for that helps clean up & reset default css! It resets default padding & margin, remove text-decoration on anchor tag, and many more!
Installation
# install with npm
npm i css-maid
# install with yarn
yarn add css-maid
Quick Start
- HTML via CDN
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/Maid.min.css" />
- React.js
import "css-maid";
const App = () => {
return (
<div>
<h1>Yes, it's that easy!</h1>
</div>
);
};
export default App;
Features
* {
padding: 0;
margin: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
font-family: inherit;
vertical-align: baseline;
font-size: 100%;
}
a {
text-decoration: none;
}
ol,
ul {
list-style: none;
}
input,
textarea {
outline: none;
}
textarea {
resize: none;
}