I have 2 file theme.css and main.css
theme.css
.table td {
border-top: 1px solid #e8edf1;
vertical-align: top;
padding: 5px 5px !important;
color: #576475;
font-size: 11px;
}
main.css
.table td {
padding: 1px 2px;
}
I want to override property of td via main.css by including main.css after theme.css.
But final output takes property of theme.css .
PS: I want to override only padding property.
padding: 1px 2px !important;