Sushan
Sushan

Reputation: 3233

How to test website for larger displays?

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

Answers (4)

Nilay Mehta
Nilay Mehta

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

counterbeing
counterbeing

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

Leo Pflug
Leo Pflug

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

Krzysztof
Krzysztof

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

Related Questions