Skip to content
1440px

1:1 Aspect Ratio

Exact 1:1 resolutions, the CSS you need, and where the ratio actually shows up.

Square · square
1:1 = 1

Smallest whole-pixel size 1 × 1. In CSS: aspect-ratio: 1 / 1. Rotated it becomes 1:1.

Where 1:1 is used

Instagram grid posts, profile pictures, album artwork, app icons.

The square was Instagram's only option until 2015 and still dominates profile imagery because a circle mask crops a square predictably.

1:1

Rendered live with aspect-ratio: 1 / 1.

1:1 resolutions

Every size below is exactly 1:1 — no rounding. Sizes marked as a standard are named display resolutions.

Exact 1:1 pixel dimensions
ResolutionWidthHeightMegapixelsStandard
320 × 3203203200.1
480 × 4804804800.23
640 × 6406406400.41
720 × 7207207200.52
800 × 8008008000.64
960 × 9609609600.92
1080 × 1080108010801.17
1200 × 1200120012001.44
1280 × 1280128012801.64
1440 × 1440144014402.07
1600 × 1600160016002.56
1920 × 1920192019203.69
2048 × 2048204820484.19
2560 × 2560256025606.55
3200 × 32003200320010.24
3840 × 38403840384014.75
5120 × 51205120512026.21
7680 × 76807680768058.98

Using 1:1 in CSS

CSS
/* Modern — one line */
.box { aspect-ratio: 1 / 1; }

/* With a fixed width */
.box { width: 100%; max-width: 800px; aspect-ratio: 1 / 1; }

/* Legacy padding-top hack, if you still need it */
.box-legacy { position: relative; }
.box-legacy::before { content: ""; display: block; padding-top: 100%; }
.box-legacy > * { position: absolute; inset: 0; }

Questions about 1:1

What resolution is 1:1?

1:1 is a ratio, not a fixed resolution — any size where width ÷ height equals 1 qualifies. The smallest whole-pixel pair is 1 × 1, and common ones include 640 × 640, 720 × 720, 800 × 800, 960 × 960.

What is 1:1 used for?

Instagram grid posts, profile pictures, album artwork, app icons.

How do I set 1:1 in CSS?

Use the aspect-ratio property: aspect-ratio: 1 / 1;. The element then keeps that shape at any width. It is supported in every current browser.

What is 1:1 the other way round?

Rotated to portrait it becomes 1:1 — the same shape, turned 90 degrees.

How do I calculate a 1:1 height from a width?

Multiply the width by 1. For example 1080 × 1 = 1080. The calculator does it both directions.

Other aspect ratios

All resolutions on this page are computed directly from the ratio, so every pair is exact. See methodology.