On my website, the <body>
container has a max-width
of 1000px and a width
of 100%, allowing it to display properly on various resolutions ranging from 100px to 4000px (and even higher) - making it fully responsive.
I utilize @media
queries to adjust elements like columns so that they extend to 100% width when below a certain max-width: 800px
threshold, targeting mobile phone displays. For example:
.column { width: 50%; float: left; }
@media (max-width: 800px){
.column { width: 100%; }
}
However, is there a method to view the mobile phone version of the website on a 1920px monitor without reducing the browser window size to less than 800px?