xxxxxxxxxx
/* @media Rule */
@media all and (max-width: 1024px) { }
/* @import Rule */
@import url(styles.css) all and (max-width: 1024px) { }
xxxxxxxxxx
1<!-- Separate CSS File -->
<link href="styles.css" rel="stylesheet" media="all and (max-width: 1024px)">
2
3