postcss-delete-duplicate-css
Version:
PostCSS plugin delete duplicate css in the file
31 lines (25 loc) • 309 B
CSS
div {
width: 100px;
height: 100px;
}
.content {
width: 100px;
height: 100px;
}
#main {
width: 100px;
height: 100px;
}
div .title {
width: 100px;
height: 100px;
}
div .title,
h1 {
font-size: 24px;
color: #4f43f6;
}
div {
width: 10px;
height: 100px;
}