The question is simple. Is it possible to make sure that competing or conflicting CSS properties between two files included in main HTML get resolved so as to favor the settings in one of the two files.
if I have
<link href="A.css" rel="stylesheet" type="text/css">
<link href="B.css" rel="stylesheet" type="text/css">
and A contains something like
body{
color: #ffffff;
}
whereas B contains
body{
color: #000000;
}
Can I somehow indicate that every setting that is present in both files gets its property from, say, A file?
Do some of the engines like SASS or LESS allow this?