Change layout based on orientation...
Change layout based on orientation...
- Started
- Last post
- 4 Responses
- insomnie
I am trying to figure out how to display two slightly different layouts on android devices based on orientation. Any help would be great.
- spmitch0
css
@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
}@media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
}
- ********0
- insomnie0
THANKS!