<link href="style1.css" rel="stylesheet" type="text/css">
<link href="style2.css" rel="stylesheet" type="text/css">
When setting the color in style1 to white:
.box{
color:#fff;
}
In style2, the color is set to black.
.box{
color:#000;
}
Why does style1 take precedence over style2?