I want to make multiple responsive css stylesheets for one document. So I do:
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="responsive.css" media="screen and (max-width: 900px)">
<link rel="stylesheet" type="text/css" href="responsive_1056.css" media="screen and (max-width: 1056px)">
Once it reaches 1056, the responsive_1056.css file is executed. But once it reaches 900px, the responsive.css (max-width: 900px) is not executed.
Is there a reason why this happens? How do I fix it?