Image Dimension Checker

Score whether images set width and height — not a ranking trick, just layout-shift hygiene.

What this tool gives you

width/height score
Fetch or paste
CLS hygiene
Starter snippet

Check image width and height

Fetch a public page or paste HTML. The checker scores reserved space — not a ranking trick.

What this checker looks for

Width and height attributes reserve layout space before the file loads. That cuts CLS.

Both attributes

Every <img> needs width and height, not just one.

Numeric pixels

Use 1200 and 675, not 100% or auto.

HTML first

Attributes beat style="width:…" because they apply before CSS.

src still required

Dimensions cannot reserve a file that is not referenced.

Aspect ratio

Matching intrinsic size keeps the box from stretching.

Not a ranking lever

This is Core Web Vitals hygiene, not a citation trick.

How to use the checker

Fix alt text first, then width and height, then share cards.

1

Check the live page

Fetch the public URL or paste the HTML from view-source.

2

Set both attributes

Every <img> needs width and height so the browser can reserve space.

3

Use pixel numbers

Match the intrinsic size. CSS can still shrink with max-width:100%.

What healthy image dimensions usually include

Both attributes. Positive pixels. No CSS-only sizing as the only reserve.

PartJobDefault for public sites
widthReserve horizontal spacepositive pixel number
heightReserve vertical spacepositive pixel number matching aspect
Both attributesKnow aspect ratio earlynever only width or only height
Numeric valuesAvoid 100% / auto1200 and 675, not 100%
HTML vs CSSApply before stylesheetattributes, then CSS max-width
srcPoint at a real filesrc present

Related GEO pages

Fix alt, then width/height, then Open Graph.

Image dimension FAQs

Does setting width and height make ChatGPT cite my page?

No. Dimensions stop layout shift when the file loads. Citations still depend on crawl access, answer-ready content and corroboration.

Can I use width="100%" instead of pixels?

No. Browsers need a numeric aspect ratio. Use the intrinsic pixel size, then CSS max-width:100% to shrink it.

Is CSS width/height enough?

Attributes apply before CSS. style="width:1200px" still lets the box jump if the stylesheet is late.