---
title: How can I check my Screen Resolution?
description: Find out how you can easily check the resolution, in pixels, of your
  device's screen.
source_url:
  html: https://testingbot.com/software-testing-questions/how-to-check-my-screen-resolution
  md: https://testingbot.com/software-testing-questions/how-to-check-my-screen-resolution/index.md
---
# How to Check Screen Resolution?

- [![Share on Facebook](https://static.addtoany.com/buttons/facebook.svg) ](https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname= "Share on Facebook")
- [![Share on Twitter](https://static.addtoany.com/buttons/twitter.svg) ](https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname= "Share on Twitter")
- [![Share on LinkedIn](https://static.addtoany.com/buttons/linkedin.svg) ](https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname= "Share on LinkedIn")
- [![Share on HackerNews](https://static.addtoany.com/buttons/y18.svg) ](https://www.addtoany.com/add_to/hacker_news?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname= "Share on HackerNews")

## Checking Screen Resolution on Windows

- Right-click on the desktop and select **Display settings**.
- Scroll down to the **Resolution** section to view your current screen resolution.

## Checking Screen Resolution on Linux

- Open the system settings or display settings menu, typically found in the system preferences or control panel.
- Navigate to the **Display** or **Screen** section to find your screen resolution settings.

## Checking Screen Resolution on macOS

- Click on the Apple menu and select **System Preferences**.
- Choose **Displays** and navigate to the **Display** tab to view your screen resolution.

## Checking Screen Resolution on iOS (iPhone/iPad)

- Open the **Settings** app on your iOS device.
- Tap on **Display & Brightness** and select **View** to see your screen resolution.

## Checking Screen Resolution on Android

- Open the **Settings** app on your Android device.
- Navigate to **Display** or **Screen** settings to find the screen resolution information.

## What are the most popular Screen Resolutions?

The most popular screen resolution for desktop monitors is 1920x1080 pixels, also known as Full HD (1080p). Other common desktop resolutions include 1366x768 pixels (HD), 2560x1440 pixels (Quad HD) and 3840x2160 pixels (4K Ultra HD).

## What is the highest Screen Resolution?

The highest commercially available screen resolution is 7680x4320 pixels, also referred to as 8K Ultra HD. This resolution offers incredibly sharp and detailed visuals, ideal for professional applications such as video editing and graphic design.

## What is the difference between screen resolution and screen size?

Screen resolution refers to the number of pixels displayed on the screen horizontally and vertically, while screen size refers to the physical dimensions of the screen diagonally.

With Javascript, you can easily check the available width and height of your screen:

    const width = window.innerWidth;
    const height = window.innerHeight;

- [![Share on Facebook](https://static.addtoany.com/buttons/facebook.svg) ](https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname=)
- [![Share on Twitter](https://static.addtoany.com/buttons/twitter.svg) ](https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname=)
- [![Share on Linkedin](https://static.addtoany.com/buttons/linkedin.svg) ](https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname=)
- [![Share on Hacker News](https://static.addtoany.com/buttons/y18.svg) ](https://www.addtoany.com/add_to/hacker_news?linkurl=https%3A%2F%2Ftestingbot.com%2Fsoftware-testing-questions%2Fhow-to-check-my-screen-resolution%2Findex.md&linkname=)

 ![TestingBot Logo](https://testingbot.com/assets/logo-head-c3ea57ac5c8158d3f911af8093ee89e02c51e3e27f82c678cf90fc9e0d66cc6c.svg)

## Sign up for a Free Trial

Start testing your apps with TestingBot.

No credit card required.

[Start Free Trial](https://testingbot.com/users/sign_up)

## Other Questions

[Learn about Chromedriver and Chrome automation](https://testingbot.com/software-testing-questions/what-is-chromedriver "Learn about Chromedriver and Chrome automation")

[Centering an image with HTML and CSS](https://testingbot.com/software-testing-questions/how-to-center-an-image-in-html "Centering an image with HTML and CSS")

[Regression Testing : Definition, How it works](https://testingbot.com/software-testing-questions/what-is-regression-testing "Regression Testing : Definition, How it works")

[Updating Safari on an older macOS version](https://testingbot.com/software-testing-questions/how-to-update-safari-on-an-old-mac "Updating Safari on an older macOS version")

[Use Faker to generate random data for your tests](https://testingbot.com/software-testing-questions/how-to-generate-fake-data "Use Faker to generate random data for your tests")

[What exactly is an iOS device?](https://testingbot.com/software-testing-questions/what-is-an-ios-device "What exactly is an iOS device?")
