jimmierock
New Member
I have a question about CSS media queries. My question is whether the order I have my css media queries will make a difference.For example:\[code\]<link rel="stylesheet" href="http://stackoverflow.com/questions/13808978/desktop.css" media=""><link rel="stylesheet" href="http://stackoverflow.com/questions/13808978/laptop.css" media=""><link rel="stylesheet" href="http://stackoverflow.com/questions/13808978/mobile.css" media=""><link rel="stylesheet" href="http://stackoverflow.com/questions/13808978/mobile.css" media=""><link rel="stylesheet" href="http://stackoverflow.com/questions/13808978/laptop.css" media=""><link rel="stylesheet" href="http://stackoverflow.com/questions/13808978/desktop.css" media="">\[/code\]Say I were to target desktops, laptops, and mobile devices with several media queries. Would this change how the design is displayed on multiple devices? Does the order that the links are in matter?