18

I did a bunch of googling but I can't seem to find the (non-retina) html width/height for the ipad mini.

More specifically, the width/height when using:

<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1">

Would be great if someone can post a link or provide details similar to this excellent answer:

iPad browser WIDTH & HEIGHT standard

Community
  • 1
  • 1
Joe
  • 1,762
  • 9
  • 43
  • 60

2 Answers2

26

It will be the same as for the iPad, they run at the same resolution and scale.

So, from the answer you linked to, it would be:

  • Portrait: 768x946
  • Landscape: 1024x690
WDUK
  • 18,870
  • 3
  • 64
  • 72
  • Are you sure? Since the screen is smaller it seems a little illogical that the both the ipad and the mini can both have 1024px width (in landscape) considering the screen widths are very different. – Joe Nov 05 '12 at 18:34
  • 4
    @Joe Yeah, all the elements on the iPad mini are a little bit smaller than the iPad. The mini has more PPI. See http://www.apple.com/ipad-mini/specs/ as it states the resolution: "1024-by-768 resolution at 163 pixels per inch (ppi)" – WDUK Nov 05 '12 at 18:36
  • @Joe physically smaller pixels. – tomfanning Nov 05 '12 at 18:40
  • Yes, had to wait for X time to pass before accepting an answer. – Joe Nov 05 '12 at 18:53
1

1024-by-768 resolution according to apple

http://www.apple.com/ipad-mini/design/

Robert
  • 77
  • 1
  • 14
  • 1
    That's not quite the same as the width and height for the browser, the browser has elements on screen that shrinks it a bit. – WDUK Nov 05 '12 at 18:37