Ok I have two CSS files for my HTML page and Chrome uses both 1 for 800px
or less the other for 801px
or more but Firefox and i.e. don't use the smaller one, they just display the larger one regardless of screen size.
<html>
<head>
<link href="big.css" text="text/css" media="screen and (min-device-width:801px)" rel="stylesheet" />
<link href="small.css" text="text/css" media="screen and (max-device-width:800px)" rel="stylesheet" />
</head>
</html>
h1 {
margin: 5%;
text-align: center;
}
h2 {
margin: 5%;
text-align: center;
}
The CSS is for the small but it displays differently. Very new to this, help..