Realizé las pruebas en mi tablet y no sé porque razón no me funcionan los estilos ni en vertical ni en horizontal.
Este es mi código:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial scale=1, maximum-scale=1">
</head>
<body>
</body>
</html>
<style type="text/css">
/* Portrait o Vertical */
@media screen and (orientation:portrait) {
/* Aquí van los estilos para las pantallas en vertical */
background-color: blue;
}
/* Landscape */
@media screen and (orientation:landscape) {
/* Aquí van los estilos para las pantallas en horizontal */
background-color: red;
}
</style>