Reputation: 3233
I need to test my website in 1920px X 1200px and smart tv also.
But my screen resolution size is 1366px X 768px. I have already adjusted in mobile versions(small screens).
How can i test in larger displays in my machine?
Upvotes: 1
Views: 2951
Reputation: 1907
Open Web page that you want to Test in Firefox/Chrome.
In Mozila Firefox, Use Responsive Design Mode by Pressing Ctrl + Shift + M,
and in Google Chrome, Use Toggle Device Mode by Pressing Ctrl + Shift + M.
Upvotes: 3
Reputation: 2791
I just found this tool online, it has tons of presets that make it really handy. I was thinking about making something like this with the iframe, but then, here it is!
http://quirktools.com/screenfly
Upvotes: 0
Reputation: 544
In firefox you can rightclick on the page -> inspect element(q) and then on the right-bottom side where all those little icons are is an icon labeled "test screen size".
Upvotes: 0
Reputation: 16140
You can create iframe with specified size, and then set src to url you want to test.
<iframe style="width: 1920px; height: 1080px;" src="...."></iframe>
Upvotes: 3