Detect device orientation.
.portrait .stuff{
background-color: red;
}
.landscape .stuff{
background-color: blue;
}
if(Orientation.isPortrait()){
// do something
}
if(Orientation.isLandscape()){
// do something
}
Detect device orientation.
.portrait .stuff{
background-color: red;
}
.landscape .stuff{
background-color: blue;
}
if(Orientation.isPortrait()){
// do something
}
if(Orientation.isLandscape()){
// do something
}