1

Is it possible to disable orientation on smart phones with CSS media query?

benzo
  • 421
  • 1
  • 6
  • 22
  • http://stackoverflow.com/questions/1207008/how-do-i-lock-the-orientation-to-portrait-mode-in-a-iphone-web-application – caramba Oct 01 '14 at 07:47

1 Answers1

2

It's not possible to disable the orientation by design.

What you can do with CSS media query is to check the orientation and change your css accordingly.

https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries

Kesty
  • 481
  • 1
  • 4
  • 21