"Responsive designs provide continuity between contexts.
Responsive designs are portable and accessible "
/* Portrait */ @media screen and (orientation:portrait) { /* Portrait styles */}/* Landscape */ @media screen and (orientation:landscape) { /* Landscape styles */ }/* Multiple Media Queries */@media all and (max-width: 1000px) and (min-width: 700px) { /* Between 1000px and 700px */ }