Responsive Web Design
<link rel="stylesheet" media="(max-width: 600px)" href="css/phone.css">
<link rel="stylesheet" media="(min-width: 600px)" href="css/tabletP.css">
<link rel="stylesheet" media="(min-width: 768px)" href="css/tabletL.css">
<link rel="stylesheet" media="(min-width: 992px)" href="css/laptop.css">
<link rel="stylesheet" media="(min-width: 1200px)" href="css/desktop.css">
<link rel="stylesheet" media="(min-width: 1600px)" href="css/big.css">
@media (max-width: 1600px){
/* stili per schermi tra 1200px e 1600px */
}
@media (max-width: 1200px) {
/* stili per schermi tra 990px e 1200px */
}
@media (max-width: 990px) {
/* stili per chermi tra 768px e 990px */
}
@media (max-width: 768px) {
/* stili per schermi sotto i 768pxo */
}