I have 2 css files which are minified and combined into one file. But the CSS property on the same element is not combined.
file1.css // this comes from a common library
body { position: relative; margin: auto; }
file2.css //this is a project specific style
body { position: static }
min.css
body{position: relative; margin: auto}
body{position:static}
I want position: static
to take precedence on position: relative