Orientation changes (orientation)
Verify the page allows viewing in both portrait and landscape orientations.
Oriented content hidden:
This page prevents/discourages orientation by hiding all content when orientated.
<style>
@media screen and (orientation: portrait) {
body {
display: none;
}
}
</style>
@media screen and (orientation: portrait) {
body {
display: none;
}
}
</style>