Goozo
Goozo

Reputation: 956

How to test a webpage for different aspect ratios

Is there a tool that can mimic different screen aspect ratio? for example 16.9, 3.2, 4.3. I need to see the look and feel of a webpage and fix the css.

What I want to test is how the different rules will work such as

@media screen and (aspect-ratio: n/m) {

... }

thanks, es

Upvotes: 0

Views: 2232

Answers (1)

asimovwasright
asimovwasright

Reputation: 838

Chrome's dev-tools. You can open the mobile emulator, switch to responsive, and set the resolution to anything you like.

You could choose a resolution within the aspect ratio you want to test on. Like 800 x 600 would be 4:3

Upvotes: 1

Related Questions