<link href="style1.css" rel="stylesheet" type="text/css">
<link href="style2.css" rel="stylesheet" type="text/css">
In style1, let's say I declare color to be white:
.box{
color:#fff;
}
In style2, I declare it to be black.
.box{
color:#000;
}
How come style1 takes priority?