Is it possible to avoid transition to landscape view in Safari for iOS when the device is rotated?
iOS Safari has the \"orentationchange\" event, I tried to intercep
I test this way work for me:
@media (orientation: portrait) { body { transform: rotate(-90deg); } }