css orientation code example
Example 1: detect portrait landscape css
@media screen and (orientation:portrait) { … }
@media screen and (orientation:landscape) { … }
Example 2: css device orientation
@media screen and (orientation: portrait) {
#toolbar {
width: 100%;
}
}
@media screen and (orientation: landscape) {
#toolbar {
position: fixed;
width: 2.65em;
height: 100%;
}
p {
margin-left: 2em;
}
li + li {
margin-top: .5em;
}
}
Example 3: mediaquery for portrate
@media (orientation: portrait) {
body {
flex-direction: column;
}
}